Skip to content

Commit 599f04d

Browse files
committed
Fix formatting and add changelog entry
1 parent f4364a3 commit 599f04d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
77

88
### Added
99

10+
- #754 - Add `Cargo.toml` as configuration source
1011
- #741 - added `armv7-unknown-linux-gnueabi` and `armv7-unknown-linux-musleabi` targets.
1112
- #721 - add support for running doctests on nightly if `CROSS_UNSTABLE_ENABLE_DOCTESTS=true`.
1213
- #719 - add `--list` to known subcommands.

src/cross_toml.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,7 @@ impl CrossToml {
5959
.and_then(|m| m.get("cross"));
6060

6161
if let Some(cross_meta) = cross_metadata_opt {
62-
Ok(Some(Self::parse_from_deserializer(
63-
cross_meta.clone()
64-
)?))
62+
Ok(Some(Self::parse_from_deserializer(cross_meta.clone())?))
6563
} else {
6664
Ok(None)
6765
}

0 commit comments

Comments
 (0)