-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
74 lines (68 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[workspace]
resolver = "2"
package.version = "0.5.0"
package.edition = "2021"
package.license = "Apache-2.0"
members = ["crates/*"]
[workspace.dependencies]
ndc-sdk-core = { path = "../sdk-core" }
ndc-models = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.2.0-rc.3" }
ndc-test = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.2.0-rc.3" }
anyhow = "1"
async-trait = "0.1"
axum = { version = "0.6", features = ["http2"] }
axum-extra = "0.8"
bytes = "1"
clap = { version = "4", features = ["derive", "env"] }
http = "0.2"
mime = "0.3"
opentelemetry = "0.22"
opentelemetry-http = "0.11"
opentelemetry-otlp = { version = "0.15", features = [
"reqwest-client",
"gzip-tonic",
"tls",
"tls-roots",
"http-proto",
] }
opentelemetry-semantic-conventions = "0.14"
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
opentelemetry-zipkin = "0.20"
prometheus = "0.13"
reqwest = "0.11"
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
thiserror = "1"
tokio = { version = "1", features = [
"fs",
"macros",
"rt-multi-thread",
"signal",
] }
tokio-test = "0.4"
tower-http = { version = "0.4", features = [
"cors",
"limit",
"trace",
"validate-request",
] }
tracing = "0.1"
tracing-opentelemetry = "0.23"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"ansi",
"env-filter",
"fmt",
"json",
] }
url = "2"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# 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" }
wildcard_imports = { level = "allow" }