remove temporary file and add missing ones

This commit is contained in:
Maple 2025-09-21 16:21:58 +02:00
commit 4e83068662
5 changed files with 3786 additions and 12 deletions

26
prudpv1/Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "prudpv1"
version = "0.1.0"
edition = "2024"
[dependencies]
bytemuck = { version = "1.23.1", features = ["derive"] }
tokio = { version = "1.47.0", features = ["full"] }
hmac = "0.12.1"
md-5 = "^0.10.6"
rc4 = "0.1.0"
v-byte-helpers = { git = "https://github.com/DJMrTV/VByteMacros", version = "0.1.1" }
thiserror = "2.0.12"
log = "0.4.27"
async-trait = "0.1.88"
typenum = "1.18.0"
once_cell = "1.21.3"
rnex-core = { path = "../rnex-core", version = "0.1.1" }
[[bin]]
name = "proxy_insecure"
path = "src/executables/proxy_insecure.rs"
[[bin]]
name = "proxy_secure"
path = "src/executables/proxy_secure.rs"

2
prudpv1/src/lib.rs Normal file
View file

@ -0,0 +1,2 @@
pub mod prudp;
pub mod executables;