chore: update criterion

This commit is contained in:
Dmitry Dygalo 2023-07-05 10:59:38 +02:00 committed by Dmitry Dygalo
parent 63f5851c0c
commit a9f05e69f4
1 changed files with 21 additions and 6 deletions

View File

@ -2,7 +2,17 @@
authors = ["dmitry.dygalo <dadygalo@gmail.com>"]
description = "A crate for performing JSON schema validation"
edition = "2021"
exclude = ["tests", "python", "benches/data/*.json", ".github", ".yamllint", ".pre-commit-config.yaml", ".gitignore", ".gitmodules", "*.md"]
exclude = [
"tests",
"python",
"benches/data/*.json",
".github",
".yamllint",
".pre-commit-config.yaml",
".gitignore",
".gitmodules",
"*.md",
]
keywords = ["jsonschema", "validation"]
license = "MIT"
name = "jsonschema"
@ -32,7 +42,9 @@ base64 = "0.21"
bytecount = { version = "0.6", features = ["runtime-dispatch-simd"] }
clap = { version = "4.0", features = ["derive"], optional = true }
fancy-regex = "0.11"
fraction = { version = "0.13", default-features = false, features = ["with-bigint"] }
fraction = { version = "0.13", default-features = false, features = [
"with-bigint",
] }
iso8601 = "0.6"
itoa = "1"
memchr = "2.5"
@ -41,7 +53,10 @@ once_cell = "1.17"
parking_lot = "0.12"
percent-encoding = "2.1"
regex = "1.6"
reqwest = { version = "0.11", features = ["blocking", "json"], default-features = false, optional = true }
reqwest = { version = "0.11", features = [
"blocking",
"json",
], default-features = false, optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
time = { version = "0.3", features = ["parsing", "macros"] }
@ -53,8 +68,8 @@ getrandom = { version = "0.2", features = ["js"] }
[dev-dependencies]
bench_helpers = { path = "../bench_helpers" }
criterion = { version = "0.4.0", features = [], default-features = false }
lazy_static = "1.4" # Needed for json schema test suite
criterion = { version = "0.5.1", features = [], default-features = false }
lazy_static = "1.4" # Needed for json schema test suite
json_schema_test_suite = { version = "0.3.0", path = "../jsonschema-test-suite" }
jsonschema-valid = "0.5"
mockito = "0.31"
@ -79,4 +94,4 @@ name = "jsonschema_valid"
[profile.release]
codegen-units = 1
lto = "on"
lto = "fat"