[package]
edition = "2021"
name = "json-structure"
version = "0.6.0"
authors = ["JSON Structure Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON Structure schema validation library for Rust"
documentation = "https://docs.rs/json-structure"
readme = "README.md"
keywords = [
"json",
"schema",
"validation",
"types",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/json-structure/sdk"
[features]
cli = ["clap"]
default = []
extended = []
[lib]
name = "json_structure"
path = "src/lib.rs"
[[bin]]
name = "jstruct"
path = "src/bin/jstruct.rs"
required-features = ["cli"]
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "coverage_tests"
path = "tests/coverage_tests.rs"
[[test]]
name = "instance_validator_tests"
path = "tests/instance_validator_tests.rs"
[[test]]
name = "schema_validator_tests"
path = "tests/schema_validator_tests.rs"
[[test]]
name = "test_assets_tests"
path = "tests/test_assets_tests.rs"
[dependencies.base64]
version = "0.21"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.4"
features = ["derive"]
optional = true
[dependencies.indexmap]
version = "2.13"
features = ["serde"]
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dependencies.uuid]
version = "1.6"
features = [
"v4",
"serde",
]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.test-case]
version = "3.3"