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 d861dcf commit 3dbb474Copy full SHA for 3dbb474
src/cargo/util/toml/mod.rs
@@ -510,6 +510,9 @@ impl<'de> de::Deserialize<'de> for TomlDebugInfo {
510
E: de::Error,
511
{
512
let debuginfo = match value {
513
+ "none" => TomlDebugInfo::None,
514
+ "limited" => TomlDebugInfo::Limited,
515
+ "full" => TomlDebugInfo::Full,
516
"line-directives-only" => TomlDebugInfo::LineDirectivesOnly,
517
"line-tables-only" => TomlDebugInfo::LineTablesOnly,
518
_ => return Err(de::Error::invalid_value(Unexpected::Str(value), &self)),
0 commit comments