Some checks failed
Build and Test / friends (push) Successful in 9m35s
Build and Test / wii-u-chat (push) Has been cancelled
Build and Test / puyopuyo (push) Has been cancelled
Build and Test / sonic-transformed (push) Has been cancelled
Build and Test / super-mario-maker (push) Has been cancelled
Build and Test / minecraft-wiiu (push) Has been cancelled
Build and Test / wii-sports-club (push) Has been cancelled
Build and Test / splatoon (push) Has been cancelled
Build and Test / splatoon-testfire (push) Has been cancelled
Build and Test / fast-racing-neo (push) Has been cancelled
Build and Test / mario-tennis (push) Has been cancelled
33 lines
693 B
TOML
33 lines
693 B
TOML
[package]
|
|
name = "proxy"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.47.0", features = ["full"] }
|
|
prudpv0 = { path = "../prudpv0", optional = true }
|
|
prudpv1-proxy = { path = "../prudpv1-proxy", optional = true }
|
|
proxy-common = { path = "../proxy-common" }
|
|
cfg-if = "1.0.4"
|
|
rnex-prudp = { path = "../rnex-prudp" }
|
|
rnex-server = { path = "../rnex-server" }
|
|
tracing = "0.1.44"
|
|
|
|
[features]
|
|
prudpv0 = ["dep:prudpv0"]
|
|
prudpv1 = ["dep:prudpv1-proxy"]
|
|
prudplite = []
|
|
friends = ["prudpv0", "prudpv0/friends"]
|
|
splatoon = ["prudpv1"]
|
|
|
|
|
|
[[bin]]
|
|
name = "proxy_insecure"
|
|
path = "src/insecure.rs"
|
|
|
|
[[bin]]
|
|
name = "proxy_secure"
|
|
path = "src/secure.rs"
|