We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4364a3 commit 599f04dCopy full SHA for 599f04d
CHANGELOG.md
@@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
7
8
### Added
9
10
+- #754 - Add `Cargo.toml` as configuration source
11
- #741 - added `armv7-unknown-linux-gnueabi` and `armv7-unknown-linux-musleabi` targets.
12
- #721 - add support for running doctests on nightly if `CROSS_UNSTABLE_ENABLE_DOCTESTS=true`.
13
- #719 - add `--list` to known subcommands.
src/cross_toml.rs
@@ -59,9 +59,7 @@ impl CrossToml {
59
.and_then(|m| m.get("cross"));
60
61
if let Some(cross_meta) = cross_metadata_opt {
62
- Ok(Some(Self::parse_from_deserializer(
63
- cross_meta.clone()
64
- )?))
+ Ok(Some(Self::parse_from_deserializer(cross_meta.clone())?))
65
} else {
66
Ok(None)
67
}
0 commit comments