Files
telemt/Cargo.toml
T

83 lines
1.8 KiB
TOML
Raw Normal View History

2025-12-30 05:08:05 +03:00
[package]
name = "telemt"
2026-03-20 14:29:45 +04:00
version = "4.3.27-David"
2026-03-20 01:06:00 +04:00
edition = "2024"
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"
2025-12-30 05:08:05 +03:00
# Network
socket2 = { version = "0.5", features = ["all"] }
2026-02-20 13:14:09 +03:00
nix = { version = "0.28", default-features = false, features = ["net"] }
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 = "0.8"
2026-02-20 17:05:35 +03:00
x509-parser = "0.15"
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"] }
parking_lot = "0.12"
dashmap = "5.5"
2026-03-20 00:45:04 +03:00
arc-swap = "1.7"
2026-02-13 00:31:52 +00:00
lru = "0.16"
2026-02-07 19:49:41 +03:00
rand = "0.9"
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
2026-02-07 19:49:41 +03:00
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
2026-02-20 15:28:58 +02:00
notify = { version = "6", features = ["macos_fsevent"] }
2026-02-20 16:03:03 +02:00
ipnetwork = "0.20"
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"
2026-02-20 13:14:09 +03:00
tokio-rustls = { version = "0.26", default-features = false, features = ["tls12"] }
rustls = { version = "0.23", default-features = false, features = ["std", "tls12", "ring"] }
webpki-roots = "0.26"
2025-12-30 05:08:05 +03:00
[dev-dependencies]
tokio-test = "0.4"
criterion = "0.5"
proptest = "1.4"
2026-02-07 19:49:41 +03:00
futures = "0.3"
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 = "thin"