jsonschema-rs/jsonschema/Cargo.toml

55 lines
1.3 KiB
TOML
Raw Normal View History

2020-03-04 14:07:40 +00:00
[package]
name = "jsonschema"
2021-06-19 15:12:47 +00:00
version = "0.11.0"
2020-03-29 09:00:46 +00:00
authors = ["dmitry.dygalo <dadygalo@gmail.com>"]
2020-03-04 14:07:40 +00:00
edition = "2018"
2020-03-29 09:04:19 +00:00
license = "MIT"
readme = "../README.md"
2020-03-29 09:04:19 +00:00
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"]
2020-03-29 09:04:19 +00:00
categories = ["web-programming"]
2020-03-04 14:07:40 +00:00
2020-10-09 16:28:37 +00:00
[[bin]]
name = "jsonschema"
[features]
2020-10-09 16:28:37 +00:00
default = ["reqwest", "cli"]
cli = ["structopt"]
2020-03-04 14:07:40 +00:00
[dependencies]
serde_json = "1"
url = "2"
lazy_static = "1"
percent-encoding = "2"
regex = "1"
fancy-regex = "0.6"
base64 = ">= 0.2"
chrono = ">= 0.2"
reqwest = { version = ">= 0.10", features = ["blocking", "json"], optional = true}
parking_lot = ">= 0.1"
num-cmp = ">= 0.1"
2021-01-31 22:13:14 +00:00
ahash = "0.7"
2020-10-09 16:28:37 +00:00
structopt = { version = ">= 0.3", optional = true }
itoa = "0.4"
fraction = { version = "0.8", default-features = false, features = ["with-bigint"] }
2020-03-04 14:07:40 +00:00
[dev-dependencies]
criterion = ">= 0.1"
2020-06-21 21:57:14 +00:00
mockito = ">= 0"
2020-06-29 18:18:57 +00:00
json_schema_test_suite = ">= 0.3"
2021-05-01 19:33:52 +00:00
jsonschema-valid = "0.4.0"
valico = "3.6.0"
test-case = "1"
paste = ">= 0.1"
reqwest = { version = ">= 0.10", features = ["blocking", "json"] }
2020-03-04 14:07:40 +00:00
[[bench]]
name = "jsonschema"
harness = false
[profile.release]
codegen-units = 1
lto = "on"