jsonschema-rs/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2020-03-04 14:07:40 +00:00
[package]
name = "jsonschema"
2020-06-21 20:45:24 +00:00
version = "0.3.1"
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"
2020-03-29 20:52:36 +00:00
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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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"]}
parking_lot = ">= 0.1"
num-cmp = ">= 0.1"
paste = ">= 0.1"
idna = ">= 0.2"
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"
jsonschema-valid = ">= 0.1"
valico = "3"
test-case = "1"
2020-03-04 14:07:40 +00:00
[[bench]]
name = "jsonschema"
harness = false
[profile.release]
codegen-units = 1
lto = "on"