-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (47 loc) · 1.76 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
[package]
name = "streamer-template"
version = "0.2.0"
edition = "2021"
default-run = "streamer-template"
[features]
default = ["hound"]
hound = ["dep:hound"]
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.7.8", features = ["tracing", "ws"] }
axum-tracing-opentelemetry = "0.24.1"
bytes = "1.6.0"
clap = { version = "4.5.4", features = ["derive"] }
fastrand = "2.1.0"
futures = "0.3.30"
hound = { version = "3.5.1", optional = true }
init-tracing-opentelemetry = { version = "0.25.0", features =["tracing_subscriber_ext"] }
measured = "0.0.22"
metrics = "0.24.0"
metrics-exporter-prometheus = "0.16.0"
opentelemetry = "0.23.0" # otel versions are tied to `init-tracing-opentelemetry` and `axum-tracing-opentelemetry` for trait compat
opentelemetry-otlp = "0.16.0"
opentelemetry-semantic-conventions = "0.27.0"
opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio", "trace"] }
quanta = "0.12.4"
rubato = { version = "0.16.1", default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
silero = { git = "https://github.com/emotechlab/silero-rs" }
tokio = { version = "1.37.0", features = ["fs", "macros", "signal", "sync", "rt-multi-thread"] }
tokio-metrics = "0.4.0"
tokio-stream = { version = "0.1.15", features = ["sync"] }
tokio-tungstenite = "0.24.0"
tower-http = { version = "0.6.2", features = ["trace"] }
tracing = "0.1.40"
tracing-opentelemetry = "0.24.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[dev-dependencies]
dasp = { version = "0.11.0", features = ["signal"] }
hound = "3.5.1"
tracing-test = { version = "0.2.4", features = ["no-env-filter"] }
[[bin]]
name = "client"
required-features = ["hound"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }