rust-nex/rnex-core/Cargo.toml

74 lines
1.8 KiB
TOML
Raw Normal View History

[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"
2026-01-20 20:26:44 +01:00
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"
2026-04-26 14:37:28 +02:00
rand = "0.8.5"
2026-02-01 20:59:23 +01:00
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"
2025-11-12 22:41:34 +01:00
anyhow = "1.0.100"
2026-04-06 13:35:55 +00:00
ureq = { version = "3.1.4", features = [ "json" ] }
serde = { version = "1.0.228", features = [ "derive" ] }
serde_json = "1.0.149"
2026-04-14 10:49:30 +02:00
sqlx = { version = "0.8.6", optional = true, features = ["postgres", "runtime-tokio", "chrono", "time"] }
2026-04-14 09:00:49 +02:00
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"
2026-04-20 14:06:04 +02:00
urlencoding = "2.1.3"
2026-04-28 11:44:12 +02:00
futures = "0.3.32"
2025-11-13 09:51:05 +01:00
[dev-dependencies]
2025-11-13 14:06:08 +01:00
# criterion = "0.7.0"
2025-11-12 22:41:34 +01:00
[features]
rmc_struct_header = []
2026-01-31 13:48:06 +01:00
guest_login = []
2026-04-26 16:14:43 +02:00
friends = ["guest_login", "database-support"]
2026-03-24 15:48:56 +01:00
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"]
2026-05-02 13:19:06 +02:00
v3-10-22 = ["v3-8-15"]
2026-03-24 15:48:56 +01:00
v4-3-11 = ["v3-8-15"]
nx = ["big_pid"]
2026-04-29 00:03:53 +02:00
splatoon = []
2026-04-26 16:14:43 +02:00
datastore = ["database-support", "v3-8-15", "dep:aws-sdk-s3", "dep:aws-config"]
database-support = ["dep:sqlx"]
2025-11-12 22:41:34 +01:00
[[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"
2026-01-20 20:26:44 +01:00
path = "src/executables/edge_node_holder_server.rs"