-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 817 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 817 Bytes
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
[package]
name = "turn"
version = "0.1.1"
edition = "2021"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
debug = false
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "signal"] }
turn = "0.11"
webrtc-util = { version = "0.12", default-features = false, features = ["conn", "vnet"] }
sha3 = "0.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
prometheus = "0.14"
lazy_static = "1.5"
libturms = { git = "https://github.com/TurmsApp/libturms" }
opentelemetry = { version = "0.28.0", features = ["trace"] }
opentelemetry_sdk = "0.28.0"
opentelemetry-otlp = { version="0.28.0", features = ["grpc-tonic", "metrics"] }
opentelemetry-appender-tracing = "0.28.1"
thiserror = "2.0.16"
tracing-opentelemetry = "0.31.0"