Files
telemt/Cargo.toml
T

60 lines
1.1 KiB
TOML
Raw Normal View History

2025-12-30 05:08:05 +03:00
[package]
name = "telemt"
2026-02-14 22:46:00 +03:00
version = "2.0.0"
2026-02-07 19:49:41 +03: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"] }
2025-12-30 05:08:05 +03:00
tokio-util = { version = "0.7", features = ["codec"] }
# 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"
zeroize = { version = "1.8", features = ["derive"] }
2025-12-30 05:08:05 +03:00
# Network
socket2 = { version = "0.5", features = ["all"] }
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"
# 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-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"
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 }
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"
harness = false