-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
52 lines (48 loc) · 1.15 KB
/
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
48
49
50
51
52
[workspace]
resolver = "2"
package.version = "0.2.0"
package.edition = "2021"
members = [
"ndc-models",
"ndc-reference",
"ndc-test",
]
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# unstable warnings; we might need to suppress them
redundant_clone = "warn"
# disable certain pedantic warnings
doc_markdown = { level = "allow" }
missing_errors_doc = { level = "allow" }
missing_panics_doc = { level = "allow" }
module_name_repetitions = { level = "allow" }
must_use_candidate = { level = "allow" }
return_self_not_must_use = { level = "allow" }
too_many_lines = { level = "allow" }
wildcard_imports = { level = "allow" }
[workspace.dependencies]
async-trait = "0.1"
axum = "0.7"
clap = "4"
colorful = "0.2"
goldenfile = "1"
indexmap = "2"
insta = { version = "1", features = ["glob", "json"] }
iso8601 = "0.6.1"
itertools = "0.13.0"
prometheus = "0.13"
rand = "0.8"
ref-cast = "1.0"
regex = "1"
reqwest = { version = "0.12", default-features = false }
schemars = "0.8"
semver = "1"
serde = "1"
serde_json = "1"
serde_with = "3"
smol_str = "0.1"
thiserror = "1"
tokio = "1"
tokio-test = "0.4"
url = "2"