jsonschema-rs/Cargo.toml

40 lines
914 B
TOML
Raw Normal View History

2020-03-04 14:07:40 +00:00
[package]
name = "jsonschema"
2020-06-07 22:01:56 +00:00
version = "0.3.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"
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"]
2020-05-17 15:35:11 +00:00
exclude = ["tests", "python"]
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"
2020-03-04 14:07:40 +00:00
[dev-dependencies]
criterion = ">= 0.1"
2020-03-04 14:07:40 +00:00
draft = {path = "draft"}
jsonschema-valid = ">= 0.1"
valico = "3"
test-case = "1"
2020-03-04 14:07:40 +00:00
[[bench]]
name = "jsonschema"
harness = false