jsonschema-rs/jsonschema/Cargo.toml

53 lines
1.2 KiB
TOML

[package]
name = "jsonschema"
version = "0.4.3"
authors = ["dmitry.dygalo <dadygalo@gmail.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "A crate for performing JSON schema validation"
repository = "https://github.com/Stranger6667/jsonschema-rs"
keywords = ["jsonschema", "validation"]
exclude = ["tests", "python", "benches/*.json", ".github", ".yamllint", ".pre-commit-config.yaml", ".gitignore", ".gitmodules", "*.md"]
categories = ["web-programming"]
[[bin]]
name = "jsonschema"
[features]
default = ["reqwest", "cli"]
cli = ["structopt"]
[dependencies]
serde_json = "1"
url = "2"
lazy_static = "1"
percent-encoding = "2"
regex = "1"
base64 = ">= 0.2"
chrono = ">= 0.2"
rayon = "1"
reqwest = { version = ">= 0.10", features = ["blocking", "json"], optional = true}
parking_lot = ">= 0.1"
num-cmp = ">= 0.1"
idna = ">= 0.2"
structopt = { version = ">= 0.3", optional = true }
[dev-dependencies]
criterion = ">= 0.1"
mockito = ">= 0"
json_schema_test_suite = ">= 0.3"
jsonschema-valid = ">= 0.1"
valico = "3"
test-case = "1"
paste = ">= 0.1"
reqwest = { version = ">= 0.10", features = ["blocking", "json"] }
[[bench]]
name = "jsonschema"
harness = false
[profile.release]
codegen-units = 1
lto = "on"