-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.61 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
[package]
name = "observability"
version.workspace = true
authors.workspace = true
publish.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# ⚠️ IMPORTANT: Add new dependencies to workspace root Cargo.toml, NOT here!
# Use .workspace = true to reference workspace dependencies
# Maintain alphabetical order
anyhow.workspace = true
axum.workspace = true
config.workspace = true
http.workspace = true
lazy_static.workspace = true
opentelemetry = { workspace = true, features = ["metrics"] }
opentelemetry-http.workspace = true
opentelemetry-otlp.workspace = true
opentelemetry-prometheus.workspace = true
opentelemetry-semantic-conventions.workspace = true
opentelemetry-stdout.workspace = true
opentelemetry_sdk.workspace = true
prometheus.workspace = true
serde = { workspace = true, features = ["derive", "rc"] }
serde_json.workspace = true
strum.workspace = true
strum_macros.workspace = true
sysinfo.workspace = true
thiserror.workspace = true
tikv-jemalloc-ctl = { workspace = true, optional = true }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "net"] }
tonic.workspace = true
tracing = { workspace = true, features = ["log", "async-await"] }
tracing-appender.workspace = true
tracing-opentelemetry.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt", "json"] }
tracing-test.workspace = true
typed-builder.workspace = true
uuid.workspace = true
validator.workspace = true
[dev-dependencies]
tempfile.workspace = true
[package.metadata.cargo-machete]
ignored = ["strum"]
[features]
default = []
heap-profiling = ["dep:tikv-jemalloc-ctl"]