docs: Move information about supported drafts to the top of the README file

This commit is contained in:
Dmitry Dygalo 2020-05-14 16:15:22 +02:00
parent bd142105b8
commit 29b7b3bf93
No known key found for this signature in database
GPG Key ID: E2FDD4885D799724
1 changed files with 5 additions and 5 deletions

View File

@ -6,6 +6,11 @@
A JSON Schema validator implementation. It compiles schema into a validation tree to have validation as fast as possible.
Supported drafts:
- Draft 7
- Draft 6
- Draft 4 (except optional `bignum.json` test case)
```toml
# Cargo.toml
jsonschema = "0.2"
@ -58,11 +63,6 @@ fn main() {
}
```
Supported drafts:
- Draft 7
- Draft 6
- Draft 4 (except optional `bignum.json` test case)
## Performance
There is a comparison with other JSON Schema validators written in Rust - `jsonschema_valid` and `valico`.