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 24813db commit a0d1859Copy full SHA for a0d1859
crates/cargo-util-schemas/src/schema.rs
@@ -12,8 +12,8 @@ impl JsonSchema for TomlValueWrapper {
12
"TomlValue".into()
13
}
14
15
- fn json_schema(gen: &mut schemars::SchemaGenerator) -> schemars::Schema {
+ fn json_schema(generator: &mut schemars::SchemaGenerator) -> schemars::Schema {
16
// HACK: this is both more and less permissive than `TomlValue` but its close
17
- gen.subschema_for::<serde_json::Value>().into()
+ generator.subschema_for::<serde_json::Value>().into()
18
19
0 commit comments