mirror of
https://github.com/telemt/telemt.git
synced 2026-09-25 12:05:58 +03:00
Dependencies Update + Rust 1.88
This commit is contained in:
Generated
+320
-467
File diff suppressed because it is too large
Load Diff
+30
-26
@@ -2,27 +2,28 @@
|
|||||||
name = "telemt"
|
name = "telemt"
|
||||||
version = "3.5.6"
|
version = "3.5.6"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
rust-version = "1.88"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
redteam_offline_expected_fail = []
|
redteam_offline_expected_fail = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# C
|
# C
|
||||||
libc = "0.2.186"
|
libc = "0.2.189"
|
||||||
|
|
||||||
# Async runtime
|
# Async runtime
|
||||||
tokio = { version = "1.52.3", features = ["full", "tracing"] }
|
tokio = { version = "1.53.1", features = ["full", "tracing"] }
|
||||||
tokio-util = { version = "0.7.18", features = ["full"] }
|
tokio-util = { version = "0.7.19", features = ["full"] }
|
||||||
|
|
||||||
# Crypto
|
# Crypto
|
||||||
aes = { version = "0.8.4", features = ["zeroize"] }
|
aes = { version = "0.8.4", features = ["zeroize"] }
|
||||||
ctr = { version = "0.9.2", features = ["zeroize"] }
|
ctr = { version = "0.9.2", features = ["zeroize"] }
|
||||||
cbc = "0.1.2"
|
cbc = "0.1.2"
|
||||||
sha2 = "0.10.9"
|
sha2 = "0.10.9"
|
||||||
sha1 = "0.10.6"
|
sha1 = "0.10.7"
|
||||||
md-5 = "0.10.6"
|
md-5 = "0.10.6"
|
||||||
hmac = "0.12.1"
|
hmac = "0.12.1"
|
||||||
crc32fast = "1.5.0"
|
crc32fast = "1.5.1"
|
||||||
crc32c = "0.6.8"
|
crc32c = "0.6.8"
|
||||||
zeroize = { version = "1.9.0", features = ["derive"] }
|
zeroize = { version = "1.9.0", features = ["derive"] }
|
||||||
subtle = "2.6.1"
|
subtle = "2.6.1"
|
||||||
@@ -30,7 +31,7 @@ static_assertions = "1.1.0"
|
|||||||
ml-kem = { version = "0.3.2", default-features = false, features = ["alloc", "zeroize"] }
|
ml-kem = { version = "0.3.2", default-features = false, features = ["alloc", "zeroize"] }
|
||||||
|
|
||||||
# Network
|
# Network
|
||||||
socket2 = { version = "0.6.4", features = ["all"] }
|
socket2 = { version = "0.6.5", features = ["all"] }
|
||||||
nix = { version = "0.31.3", default-features = false, features = [
|
nix = { version = "0.31.3", default-features = false, features = [
|
||||||
"net",
|
"net",
|
||||||
"user",
|
"user",
|
||||||
@@ -38,61 +39,64 @@ nix = { version = "0.31.3", default-features = false, features = [
|
|||||||
"fs",
|
"fs",
|
||||||
"signal",
|
"signal",
|
||||||
] }
|
] }
|
||||||
shadowsocks = { version = "1.24.0", features = ["aead-cipher-2022"] }
|
shadowsocks = { version = "1.24.0", default-features = false, features = [
|
||||||
|
"aead-cipher",
|
||||||
|
"aead-cipher-2022",
|
||||||
|
] }
|
||||||
|
|
||||||
# Serialization
|
# Serialization
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { version = "1.0.229", features = ["derive"] }
|
||||||
serde_json = "1.0.150"
|
serde_json = "1.0.151"
|
||||||
toml = "1.1"
|
toml = "1.1.5"
|
||||||
x509-parser = "0.18.1"
|
x509-parser = "0.18.1"
|
||||||
|
|
||||||
# Utils
|
# Utils
|
||||||
bytes = "1.12.0"
|
bytes = "1.12.1"
|
||||||
thiserror = "2.0.18"
|
thiserror = "2.0.20"
|
||||||
tracing = "0.1.44"
|
tracing = "0.1.44"
|
||||||
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|
||||||
tracing-appender = "0.2.5"
|
tracing-appender = "0.2.5"
|
||||||
parking_lot = "0.12.5"
|
parking_lot = "0.12.5"
|
||||||
dashmap = "6.2.1"
|
dashmap = "6.2.1"
|
||||||
arc-swap = "1.9.1"
|
arc-swap = "1.9.2"
|
||||||
lru = "0.16.4"
|
lru = "0.18.4"
|
||||||
rand = "0.10.1"
|
rand = "0.10.2"
|
||||||
chrono = { version = "0.4.45", features = ["serde"] }
|
chrono = { version = "0.4.45", features = ["serde"] }
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
url = "2.5.8"
|
url = "2.5.8"
|
||||||
regex = "1.12.4"
|
regex = "1.13.1"
|
||||||
crossbeam-queue = "0.3.12"
|
crossbeam-queue = "0.3.14"
|
||||||
num-bigint = "0.4.6"
|
num-bigint = "0.4.8"
|
||||||
num-traits = "0.2.19"
|
num-traits = "0.2.19"
|
||||||
x25519-dalek = "2.0.1"
|
x25519-dalek = "2.0.1"
|
||||||
anyhow = "1.0.102"
|
anyhow = "1.0.104"
|
||||||
|
|
||||||
# HTTP
|
# HTTP
|
||||||
reqwest = { version = "0.13.4", features = ["rustls"], default-features = false }
|
reqwest = { version = "0.13.4", features = ["rustls"], default-features = false }
|
||||||
notify = "8.2.0"
|
notify = "8.2.0"
|
||||||
ipnetwork = { version = "0.21.1", features = ["serde"] }
|
ipnetwork = { version = "0.21.1", features = ["serde"] }
|
||||||
hyper = { version = "1.10.1", features = ["client", "server", "http1"] }
|
hyper = { version = "1.11.1", features = ["client", "server", "http1"] }
|
||||||
hyper-util = { version = "0.1.20", features = ["tokio", "server-auto"] }
|
hyper-util = { version = "0.1.20", features = ["tokio", "server-auto"] }
|
||||||
http-body-util = "0.1.3"
|
http-body-util = "0.1.5"
|
||||||
httpdate = "1.0.3"
|
httpdate = "1.0.3"
|
||||||
tokio-tungstenite = { version = "0.30.0", default-features = false }
|
tokio-tungstenite = { version = "0.30.0", default-features = false }
|
||||||
futures-util = { version = "0.3.32", default-features = false, features = ["sink", "std"] }
|
futures-util = { version = "0.3.34", default-features = false, features = ["sink", "std"] }
|
||||||
tokio-rustls = { version = "0.26.4", default-features = false, features = [
|
tokio-rustls = { version = "0.26.5", default-features = false, features = [
|
||||||
"tls12",
|
"tls12",
|
||||||
] }
|
] }
|
||||||
rustls = { version = "0.23.41", default-features = false, features = [
|
rustls = { version = "0.23.43", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"tls12",
|
"tls12",
|
||||||
"ring",
|
"ring",
|
||||||
] }
|
] }
|
||||||
webpki-roots = "1.0.8"
|
webpki-roots = "1.0.9"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio-test = "0.4.5"
|
tokio-test = "0.4.5"
|
||||||
criterion = "0.8.2"
|
criterion = "0.8.2"
|
||||||
proptest = "1.11.0"
|
proptest = "1.11.0"
|
||||||
futures = "0.3.32"
|
futures = "0.3.34"
|
||||||
tempfile = "3.27.0"
|
tempfile = "3.27.0"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
|
|||||||
Reference in New Issue
Block a user