File tree Expand file tree Collapse file tree 5 files changed +367
-62
lines changed Expand file tree Collapse file tree 5 files changed +367
-62
lines changed Original file line number Diff line number Diff line change 2424 " strs" ,
2525 " struct" ,
2626 " structs" ,
27+ " subschema" ,
28+ " subschemas" ,
2729 " valtree" ,
2830 " valtrees"
2931 ],
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ rust_2018_idioms = "deny"
1313nonstandard_style = " deny"
1414future_incompatible = " deny"
1515missing_debug_implementations = { level = " warn" , priority = -1 }
16- missing_docs = { level = " warn" , priority = -1 }
1716
1817[workspace .dependencies ]
1918assert_matches = " 1"
Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Add ` spec::ObjectSchema::deprecated ` field.
6+ - Add ` spec::ObjectSchema::examples ` field.
57- Add ` spec::Contact::validate_email() ` method.
68- Expose the ` spec::ClientCredentialsFlow::token_url ` field.
9+ - The type of the ` spec::ObjectSchema::enum ` field is now ` Vec<serde_json::Value> ` .
10+ - The type of the ` spec::ObjectSchema::const ` field is now ` Option<serde_json::Value> ` .
711- Rename ` Error::{SemVerError => Semver} ` enum variant.
812- Rename ` spec::RefError::{InvalidType => UnknownType} ` enum variant.
913
Original file line number Diff line number Diff line change 1414//!
1515//! [OpenAPI v3.1]: https://github.com/OAI/OpenAPI-Specification/blob/HEAD/versions/3.1.0.md
1616
17+ #![ warn( missing_docs) ]
1718#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
1819
1920use std:: { fs:: File , io:: Read , path:: Path } ;
You can’t perform that action at this time.
0 commit comments