-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
47 lines (43 loc) · 891 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
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
repository = "https://github.com/x52dev/oas3-rs"
license = "MIT"
edition = "2021"
rust-version = "1.75"
[workspace.lints.rust]
rust_2018_idioms = "deny"
nonstandard_style = "deny"
future_incompatible = "deny"
missing_debug_implementations = { level = "warn", priority = -1 }
[workspace.dependencies]
assert_matches = "1"
bytes = "1.8"
color-eyre = "0.6"
colored = "2"
derive_more = "1"
dotenvy = "0.15"
eyre = "0.6.12"
futures-util = "0.3"
http = "1"
indoc = "2"
log = "0.4"
maplit = "1"
oas3 = "0.12"
once_cell = "1"
pretty_assertions = "1"
pretty_env_logger = "0.5"
prettytable-rs = "0.10"
regex = "1.11.1"
reqwest = "0.12"
semver = "1"
serde = "1"
serde_json = "1"
serde_with = "3"
serde_yml = "0.0.12"
tokio = "1.41.1"
url = "2"
[patch.crates-io]
oas3 = { path = "crates/oas3" }
roast = { path = "crates/roast" }