-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathCargo.toml
35 lines (28 loc) · 897 Bytes
/
Cargo.toml
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
[package]
name = "openapi_to_clients_schema"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clients_schema = {path="../clients_schema"}
serde_json = { workspace = true }
serde_ignored = { workspace = true }
serde_yml = { workspace = true }
openapiv3 = { workspace = true }
anyhow = { workspace = true }
indexmap = { workspace = true }
convert_case = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[dev-dependencies]
insta = { version = "1.41.1", features = ["json", "serde"] }
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
# Some json schema implementations
#boon = "0.3.1"
#jsonschema-transpiler = "1.10.0"
#serde_valid = "0.13.0"
#jsonschema-valid = "0.5.1"
#jsonschema = { version = "0.16.1", features=[]}