Apply keyword_idents_2024

This commit is contained in:
Eric Huss
2025-07-05 19:29:09 -07:00
parent 24813db9da
commit a0d1859575

View File

@@ -12,8 +12,8 @@ impl JsonSchema for TomlValueWrapper {
"TomlValue".into()
}
fn json_schema(gen: &mut schemars::SchemaGenerator) -> schemars::Schema {
fn json_schema(generator: &mut schemars::SchemaGenerator) -> schemars::Schema {
// HACK: this is both more and less permissive than `TomlValue` but its close
gen.subschema_for::<serde_json::Value>().into()
generator.subschema_for::<serde_json::Value>().into()
}
}