forked from AvarianKnight/rust-mumble
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (49 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
52 lines (49 loc) · 1.47 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 = "rust-mumble"
version = "0.1.0"
edition = "2024"
[dependencies]
aes = "0.8.4"
anyhow = "1.0.98"
# TODO: Update to https://github.com/RustCrypto/block-modes
block-modes = "0.9.1"
bytes = "1.10.1"
byteorder = "1.5.0"
clap = { version = "4.5.40", features = ["derive"] }
futures = "0.3.31"
futures-util = "0.3.31"
lazy_static = "1.5.0"
protobuf = "2.28.0"
ring = "0.17.14"
rustls = { version = "0.23.28", features = ["ring", "tls12"], default-features = false }
rustls-pemfile = "2.2.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
tokio = { version = "1.45.1", features = ["full", "tracing"] }
tokio-byteorder = "0.3.0"
tokio-rustls = { version = "0.26.2", features = ["ring", "tls12"], default-features = false}
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
prometheus = { version = "0.13.4", features = ["process"] }
rustls-pki-types = "1.12.0"
rcgen = { version = "0.13.2" }
scc = "2.3.4"
parking_lot = "0.12.4"
arc-swap = "1.7.1"
crossbeam = "0.8.4"
axum = { version = "0.7.9", features = ["macros"] }
# TODO update whenever axum-server and axum-auth go to 0.8.1
axum-server = { version = "0.7.2", features = ["tls-rustls-no-provider"] }
axum-auth = "0.7.0"
tokio-util = "0.7.15"
regex = "1.11.1"
atomic_float = "1.1.0"
socket2 = { version = "0.6.0", features = ["all"] }
[target.'cfg(not(target_os = "windows"))'.dependencies]
tikv-jemallocator = "0.6"
[profile.release]
codegen-units = 1
lto = true
#debug = 1
panic = "abort"