-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (68 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
80 lines (68 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "jsoncompat"
version = "0.3.1"
edition = "2024"
description = "JSON Schema and OpenAPI Compatibility Checker"
repository = "https://github.com/ostrowr/jsoncompat"
license = "MIT"
readme = "readme.md"
# Workspace definition so we can host the additional sibling crates.
[workspace]
members = [
"codegen", # -> jsoncompat_codegen
"fuzz", # -> json_schema_fuzz
"openapi", # -> jsoncompat_openapi
"schema", # -> json_schema_ast
"pybindings", # -> jsoncompat Python bindings
"wasm" # -> json_schema_wasm bindings
]
[dependencies]
rand = "0.10.0"
anyhow = "1.0.102"
thiserror = "2.0.18"
url = "2.5.8"
serde_json = "1.0.149"
clap = { version = "4.6.0", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
# Small, zero‑dep colour library for pleasant CLI output.
owo-colors = "4.3"
# Our own strict Draft‑2020 implementation crate
json_schema_ast = { path = "schema", version = "0.3.1" }
jsoncompat_codegen = { path = "codegen", version = "0.3.1" }
json_schema_fuzz = { path = "fuzz", version = "0.3.1" }
jsoncompat_openapi = { path = "openapi", version = "0.3.1" }
console = "0.16.3"
fancy-regex = "0.17"
percent-encoding = "2.3"
sha2 = "0.10.8"
[dev-dependencies]
json_schema_fuzz = { path = "fuzz" }
criterion = "0.8"
datatest-stable = "0.3"
[[test]]
name = "backcompat"
harness = false
[[test]]
name = "fuzz"
harness = false
[[test]]
name = "openapi_fixtures"
harness = false
[[test]]
name = "dataclasses_fuzz"
harness = false
[[test]]
name = "dataclasses_backcompat"
harness = false
[[test]]
name = "dataclasses_stamp_backcompat"
harness = false
[[bench]]
name = "validator_cache"
harness = false
[[bench]]
name = "schema_ops"
harness = false
[[bench]]
name = "dataclasses_codegen"
harness = false