Some checks failed
Build and Test / wii-u-chat (push) Failing after 5m20s
Build and Test / friends (push) Failing after 5m19s
Build and Test / sonic-transformed (push) Failing after 6m27s
Build and Test / splatoon-testfire (push) Failing after 6m28s
Build and Test / super-mario-maker (push) Failing after 6m46s
Build and Test / fast-racing-neo (push) Failing after 6m47s
Build and Test / wii-sports-club (push) Failing after 6m52s
Build and Test / puyopuyo (push) Failing after 6m52s
Build and Test / mario-tennis (push) Failing after 6m57s
Build and Test / splatoon (push) Failing after 7m2s
Build and Test / minecraft-wiiu (push) Failing after 8m6s
78 lines
1.9 KiB
TOML
78 lines
1.9 KiB
TOML
[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/RusticMaple/VByteMacros", version = "0.1.1" }
|
|
simplelog = "0.12.2"
|
|
chrono = "0.4.39"
|
|
log = "0.4.25"
|
|
rand = "0.10.0"
|
|
cfg-if = "1.0.4"
|
|
hmac = "0.12.1"
|
|
md-5 = "^0.10.6"
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
hex = "0.4.3"
|
|
|
|
macros = { path = "../macros" }
|
|
paste = "1.0.15"
|
|
typenum = "1.18.0"
|
|
json = "0.12.4"
|
|
anyhow = "1.0.100"
|
|
ureq = { version = "3.3.0", features = [ "json" ] }
|
|
serde = { version = "1.0.228", features = [ "derive" ] }
|
|
serde_json = "1.0.149"
|
|
sqlx = { version = "0.8.6", optional = true, features = ["postgres", "runtime-tokio", "chrono"] }
|
|
aws-sdk-s3 = { version = "1.129.0", optional = true }
|
|
aws-config = { version = "1.8.15", optional = true }
|
|
base64 = "0.22.1"
|
|
sha2 = "0.10.9"
|
|
urlencoding = "2.1.3"
|
|
futures = "0.3.32"
|
|
async-trait = "0.1.89"
|
|
ctor = "1.0.7"
|
|
nex-account = { version = "0.2.0", registry = "spbr" }
|
|
tonic = "0.14.6"
|
|
|
|
[dev-dependencies]
|
|
# criterion = "0.7.0"
|
|
|
|
[features]
|
|
rmc_struct_header = []
|
|
guest_login = []
|
|
friends = ["guest_login", "database-support"]
|
|
big_pid = []
|
|
v3-3-2 = []
|
|
third-notif-param = []
|
|
v3-4-0 = ["v3-3-2", "third-notif-param", "rmc_struct_header"]
|
|
v3-5-0 = ["v3-4-0"]
|
|
v3-8-15 = ["v3-5-0"]
|
|
v3-10-22 = ["v3-8-15"]
|
|
v4-3-11 = ["v3-8-15"]
|
|
nx = ["big_pid"]
|
|
splatoon = []
|
|
datastore = ["database-support", "v3-8-15", "dep:aws-sdk-s3", "dep:aws-config"]
|
|
database-support = ["dep:sqlx"]
|
|
|
|
[[bench]]
|
|
name = "rmc_serialization"
|
|
harness = false
|
|
|
|
[[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"
|