2025-01-19 13:02:15 +01:00
|
|
|
[package]
|
|
|
|
|
name = "splatoon-server-rust"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
2025-03-25 07:30:10 +00:00
|
|
|
[profile.prod]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
overflow-checks = false
|
|
|
|
|
strip = true
|
|
|
|
|
debug = false
|
|
|
|
|
debug-assertions = false
|
|
|
|
|
lto = true
|
|
|
|
|
incremental = false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-01-19 13:02:15 +01:00
|
|
|
[dependencies]
|
2025-01-19 14:14:48 +01:00
|
|
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
2025-01-19 13:02:15 +01:00
|
|
|
dotenv = "0.15.0"
|
|
|
|
|
once_cell = "1.20.2"
|
2025-01-19 14:14:48 +01:00
|
|
|
rc4 = "0.1.0"
|
2025-01-19 13:02:15 +01:00
|
|
|
thiserror = "2.0.11"
|
2025-01-19 14:14:48 +01:00
|
|
|
v_byte_macros = { git = "https://github.com/DJMrTV/VByteMacros" }
|
|
|
|
|
simplelog = "0.12.2"
|
|
|
|
|
chrono = "0.4.39"
|
|
|
|
|
log = "0.4.25"
|
2025-01-19 20:05:44 +01:00
|
|
|
anyhow = "1.0.95"
|
2025-01-20 18:01:54 +01:00
|
|
|
rand = "0.9.0-beta.3"
|
|
|
|
|
rustls = "^0.23.21"
|
2025-01-21 20:10:58 +01:00
|
|
|
hmac = "0.12.1"
|
|
|
|
|
md-5 = "^0.10.6"
|
2025-02-04 17:08:04 +01:00
|
|
|
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "net", "sync", "fs"] }
|
2025-01-26 12:09:56 +01:00
|
|
|
tokio-stream = { version = "0.1.17", features = ["io-util"] }
|
2025-02-02 00:46:04 +01:00
|
|
|
tonic = "0.12.3"
|
|
|
|
|
prost = "0.13.4"
|
2025-02-02 20:25:22 +01:00
|
|
|
hex = "0.4.3"
|
2025-02-02 00:46:04 +01:00
|
|
|
|
2025-02-04 22:07:22 +01:00
|
|
|
macros = { path = "macros" }
|
2025-02-18 22:55:33 +01:00
|
|
|
rocket = { version = "0.5.1", features = ["json", "serde_json"] }
|
|
|
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
|
|
|
async-trait = "0.1.86"
|
2025-02-19 23:30:15 +01:00
|
|
|
paste = "1.0.15"
|
2025-03-24 23:31:25 +01:00
|
|
|
typenum = "1.18.0"
|
2025-02-04 22:07:22 +01:00
|
|
|
|
2025-02-02 00:46:04 +01:00
|
|
|
[build-dependencies]
|
2025-02-08 13:30:43 +01:00
|
|
|
tonic-build = "0.12.3"
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["secure", "auth"]
|
|
|
|
|
secure = []
|
2025-02-18 22:55:33 +01:00
|
|
|
auth = []
|