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 3d82615 commit b620f72Copy full SHA for b620f72
src/runner/toml_frobber.rs
@@ -14,7 +14,6 @@ impl<'a> TomlFrobber<'a> {
14
pub(super) fn new(krate: &'a Crate, cargo_toml: &'a Path) -> Fallible<Self> {
15
let toml_content = ::std::fs::read_to_string(cargo_toml)
16
.with_context(|_| format!("missing Cargo.toml from {}", krate))?;
17
-
18
let table: Table = toml::from_str(&toml_content)
19
.with_context(|_| format!("unable to parse {}", cargo_toml.display(),))?;
20
0 commit comments