remove temporary file and add missing ones
This commit is contained in:
parent
aab4414904
commit
4e83068662
5 changed files with 3786 additions and 12 deletions
3697
Cargo.lock
generated
Normal file
3697
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
12
bu
12
bu
|
|
@ -1,12 +0,0 @@
|
|||
|
||||
|
||||
[build-dependencies]
|
||||
tonic-build = "0.12.3"
|
||||
|
||||
[features]
|
||||
default = ["secure", "auth"]
|
||||
secure = []
|
||||
auth = []
|
||||
no_tls = []
|
||||
|
||||
|
||||
26
prudpv1/Cargo.toml
Normal file
26
prudpv1/Cargo.toml
Normal 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
2
prudpv1/src/lib.rs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
pub mod prudp;
|
||||
pub mod executables;
|
||||
61
rnex-core/Cargo.toml
Normal file
61
rnex-core/Cargo.toml
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
[package]
|
||||
name = "rnex-core"
|
||||
version = "0.1.1"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
bytemuck = { version = "1.21.0", features = ["derive"] }
|
||||
dotenv = "0.15.0"
|
||||
once_cell = "1.20.2"
|
||||
rc4 = "0.1.0"
|
||||
thiserror = "2.0.11"
|
||||
v-byte-helpers = { git = "https://github.com/DJMrTV/VByteMacros", version = "0.1.1" }
|
||||
simplelog = "0.12.2"
|
||||
chrono = "0.4.39"
|
||||
log = "0.4.25"
|
||||
anyhow = "1.0.95"
|
||||
rand = "0.8.5"
|
||||
|
||||
hmac = "0.12.1"
|
||||
md-5 = "^0.10.6"
|
||||
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "net", "sync", "fs"] }
|
||||
tokio-stream = { version = "0.1.17", features = ["io-util"] }
|
||||
tonic = "0.12.3"
|
||||
prost = "0.13.4"
|
||||
hex = "0.4.3"
|
||||
|
||||
macros = { path = "../macros" }
|
||||
rocket = { version = "0.5.1", features = ["json", "serde_json"] }
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
async-trait = "0.1.86"
|
||||
paste = "1.0.15"
|
||||
typenum = "1.18.0"
|
||||
futures = "0.3.31"
|
||||
reqwest = "0.12.18"
|
||||
json = "0.12.4"
|
||||
ctrlc = "3.4.7"
|
||||
rsa = "0.9.8"
|
||||
sha2 = "0.10.9"
|
||||
chacha20 = "0.9.1"
|
||||
|
||||
rustls = "0.23.27"
|
||||
|
||||
rustls-pki-types = "1.12.0"
|
||||
rustls-webpki = "0.103.3"
|
||||
tokio-rustls = "0.26.2"
|
||||
tokio-tungstenite = "0.27.0"
|
||||
tungstenite = "0.27.0"
|
||||
|
||||
|
||||
[[bin]]
|
||||
name = "backend_server_insecure"
|
||||
path = "src/executables/backend_server_insecure.rs"
|
||||
|
||||
|
||||
[[bin]]
|
||||
name = "backend_server_secure"
|
||||
path = "src/executables/backend_server_secure.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "edge_node_holder_server"
|
||||
path = "src/executables/edge_node_holder_server.rs"
|
||||
Loading…
Add table
Add a link
Reference in a new issue