mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 14:13:58 +00:00
Regenerate files
This commit is contained in:
parent
6d4989b3c7
commit
89bcc79b5d
2 changed files with 8 additions and 2 deletions
|
@ -2751,7 +2751,7 @@ fn field_props(field: &str, ty: &str, doc: &[&str], default: &str) -> serde_json
|
||||||
"FxHashMap<String, String>" => set! {
|
"FxHashMap<String, String>" => set! {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
"FxHashMap<Box<str>, usize>" => set! {
|
"FxHashMap<Box<str>, u16>" => set! {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
"FxHashMap<String, Option<String>>" => set! {
|
"FxHashMap<String, Option<String>>" => set! {
|
||||||
|
@ -2761,6 +2761,11 @@ fn field_props(field: &str, ty: &str, doc: &[&str], default: &str) -> serde_json
|
||||||
"type": ["null", "integer"],
|
"type": ["null", "integer"],
|
||||||
"minimum": 0,
|
"minimum": 0,
|
||||||
},
|
},
|
||||||
|
"Option<u16>" => set! {
|
||||||
|
"type": ["null", "integer"],
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 65535,
|
||||||
|
},
|
||||||
"Option<String>" => set! {
|
"Option<String>" => set! {
|
||||||
"type": ["null", "string"],
|
"type": ["null", "string"],
|
||||||
},
|
},
|
||||||
|
|
|
@ -2252,7 +2252,8 @@
|
||||||
"null",
|
"null",
|
||||||
"integer"
|
"integer"
|
||||||
],
|
],
|
||||||
"minimum": 0
|
"minimum": 0,
|
||||||
|
"maximum": 65535
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue