Files
telemt/Cargo.toml
T

103 lines
2.1 KiB
TOML
Raw Normal View History

2026-06-05 14:24:27 +03:00
[package]
2025-12-30 05:08:05 +03:00
name = "telemt"
2026-06-12 15:06:14 +03:00
version = "3.4.18"
2026-03-20 01:06:00 +04:00
edition = "2024"
2025-12-30 05:08:05 +03:00
[features]
redteam_offline_expected_fail = []
2025-12-30 05:08:05 +03:00
[dependencies]
# C
libc = "0.2"
# Async runtime
2026-02-07 19:49:41 +03:00
tokio = { version = "1.42", features = ["full", "tracing"] }
2026-02-17 03:40:39 +03:00
tokio-util = { version = "0.7", features = ["full"] }
2025-12-30 05:08:05 +03:00
# Crypto
aes = "0.8"
ctr = "0.9"
cbc = "0.1"
sha2 = "0.10"
sha1 = "0.10"
md-5 = "0.10"
hmac = "0.12"
2026-02-07 19:49:41 +03:00
crc32fast = "1.4"
2026-02-23 02:32:13 +03:00
crc32c = "0.6"
2026-02-07 19:49:41 +03:00
zeroize = { version = "1.8", features = ["derive"] }
subtle = "2.6"
static_assertions = "1.1"
ml-kem = { version = "0.3.2", default-features = false, features = ["alloc", "zeroize"] }
2025-12-30 05:08:05 +03:00
# Network
socket2 = { version = "0.6", features = ["all"] }
nix = { version = "0.31", default-features = false, features = [
"net",
"user",
"process",
"fs",
"signal",
] }
2026-03-18 12:36:44 +03:00
shadowsocks = { version = "1.24", features = ["aead-cipher-2022"] }
2025-12-30 05:08:05 +03:00
2026-02-07 19:49:41 +03:00
# Serialization
2025-12-30 05:08:05 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.0"
x509-parser = "0.18"
2025-12-30 05:08:05 +03:00
# Utils
2026-02-07 19:49:41 +03:00
bytes = "1.9"
thiserror = "2.0"
2025-12-30 05:08:05 +03:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
2025-12-30 05:08:05 +03:00
parking_lot = "0.12"
dashmap = "6.1"
2026-03-20 00:45:04 +03:00
arc-swap = "1.7"
2026-02-13 00:31:52 +00:00
lru = "0.16"
rand = "0.10"
2025-12-30 05:08:05 +03:00
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
2026-02-07 19:49:41 +03:00
base64 = "0.22"
2025-12-30 05:08:05 +03:00
url = "2.5"
2026-02-07 19:49:41 +03:00
regex = "1.11"
2026-01-01 23:34:04 +03:00
crossbeam-queue = "0.3"
2026-02-15 14:15:56 +03:00
num-bigint = "0.4"
num-traits = "0.2"
x25519-dalek = "2"
2026-02-20 13:14:09 +03:00
anyhow = "1.0"
2025-12-30 05:08:05 +03:00
# HTTP
reqwest = { version = "0.13", features = ["rustls"], default-features = false }
notify = "8.2"
ipnetwork = { version = "0.21", features = ["serde"] }
2026-02-17 01:11:01 +03:00
hyper = { version = "1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto"] }
http-body-util = "0.1"
2026-02-17 04:16:16 +03:00
httpdate = "1.0"
tokio-rustls = { version = "0.26", default-features = false, features = [
"tls12",
] }
rustls = { version = "0.23", default-features = false, features = [
"std",
"tls12",
"ring",
] }
webpki-roots = "1.0"
2025-12-30 05:08:05 +03:00
[dev-dependencies]
tokio-test = "0.4"
criterion = "0.8"
2025-12-30 05:08:05 +03:00
proptest = "1.4"
2026-02-07 19:49:41 +03:00
futures = "0.3"
tempfile = "3.27.0"
2025-12-30 05:08:05 +03:00
[[bench]]
name = "crypto_bench"
2026-02-15 13:20:19 +03:00
harness = false
[profile.release]
lto = "fat"
codegen-units = 1