2025-09-21 16:21:58 +02:00
|
|
|
[package]
|
|
|
|
|
name = "prudpv1"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
2026-07-12 18:21:18 +02:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2025-09-21 16:21:58 +02:00
|
|
|
[dependencies]
|
|
|
|
|
bytemuck = { version = "1.23.1", features = ["derive"] }
|
|
|
|
|
tokio = { version = "1.47.0", features = ["full"] }
|
2026-07-14 17:27:30 +02:00
|
|
|
hmac = "0.13.0"
|
|
|
|
|
md-5 = "0.11.0"
|
|
|
|
|
rc4 = "0.2.0"
|
2026-01-07 20:33:29 +01:00
|
|
|
v-byte-helpers = { git = "https://github.com/RusticMaple/VByteMacros", version = "0.1.1" }
|
2025-09-21 16:21:58 +02:00
|
|
|
thiserror = "2.0.12"
|
|
|
|
|
async-trait = "0.1.88"
|
|
|
|
|
typenum = "1.18.0"
|
2026-07-14 17:27:30 +02:00
|
|
|
# once_cell = "1.21.3"
|
2026-07-12 18:21:18 +02:00
|
|
|
rnex-prudp = { path = "../rnex-prudp" }
|
|
|
|
|
rnex-util = { path = "../rnex-util" }
|
2026-01-31 13:48:06 +01:00
|
|
|
proxy-common = {path = "../proxy-common"}
|
|
|
|
|
cfg-if = "1.0.4"
|
2026-07-14 17:27:30 +02:00
|
|
|
tracing = "0.1.44"
|
2025-09-21 16:21:58 +02:00
|
|
|
|
2026-01-31 13:48:06 +01:00
|
|
|
[features]
|
|
|
|
|
prudpv1 = []
|