[package]
edition = "2024"
name = "jsoncompat"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON Schema and OpenAPI Compatibility Checker"
readme = "readme.md"
license = "MIT"
repository = "https://github.com/ostrowr/jsoncompat"
[lib]
name = "jsoncompat"
path = "src/lib.rs"
[[bin]]
name = "jsoncompat"
path = "src/bin/jsoncompat.rs"
[[test]]
name = "backcompat"
path = "tests/backcompat.rs"
harness = false
[[test]]
name = "compat_soundness"
path = "tests/compat_soundness.rs"
[[test]]
name = "dataclasses_backcompat"
path = "tests/dataclasses_backcompat.rs"
harness = false
[[test]]
name = "dataclasses_fixtures"
path = "tests/dataclasses_fixtures.rs"
[[test]]
name = "dataclasses_fuzz"
path = "tests/dataclasses_fuzz.rs"
harness = false
[[test]]
name = "dataclasses_stamp_backcompat"
path = "tests/dataclasses_stamp_backcompat.rs"
harness = false
[[test]]
name = "dataclasses_typing"
path = "tests/dataclasses_typing.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
harness = false
[[test]]
name = "openapi"
path = "tests/openapi.rs"
[[test]]
name = "openapi_fixtures"
path = "tests/openapi_fixtures.rs"
harness = false
[[test]]
name = "openapi_soundness"
path = "tests/openapi_soundness.rs"
[[test]]
name = "python_dataclasses_runtime"
path = "tests/python_dataclasses_runtime.rs"
[[test]]
name = "stamp_cli"
path = "tests/stamp_cli.rs"
[[test]]
name = "stamp_examples"
path = "tests/stamp_examples.rs"
[[bench]]
name = "dataclasses_codegen"
path = "benches/dataclasses_codegen.rs"
harness = false
[[bench]]
name = "schema_ops"
path = "benches/schema_ops.rs"
harness = false
[[bench]]
name = "validator_cache"
path = "benches/validator_cache.rs"
harness = false
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.console]
version = "0.16.3"
[dependencies.fancy-regex]
version = "0.17"
[dependencies.json_schema_ast]
version = "0.4.1"
[dependencies.json_schema_fuzz]
version = "0.4.1"
[dependencies.jsoncompat_codegen]
version = "0.4.1"
[dependencies.jsoncompat_openapi]
version = "0.4.1"
[dependencies.owo-colors]
version = "4.3"
[dependencies.percent-encoding]
version = "2.3"
[dependencies.rand]
version = "0.10.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.10.8"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.url]
version = "2.5.8"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.datatest-stable]
version = "0.3"