1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/Cargo.toml

40 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "servers"
2025-04-02 20:59:52 -04:00
version.workspace = true
edition.workspace = true
[workspace.package]
2025-04-05 12:03:11 -04:00
version = "0.2.0"
edition = "2024"
2025-04-02 20:59:52 -04:00
repository = "https://git.ngram.ca/OpenJam/servers"
license = "GPLv3"
authors = ["NGnius <ngniusness@gmail.com>"]
readme = "README.md"
[workspace]
members = [
"auth", "cdn",
"polariton_auth",
"rc_services", "rc_services_room",
"rc_microtransactions",
"rc_social", "rc_social_room",
"rc_chat", "rc_chat_room",
2025-05-07 20:23:22 -04:00
"rc_singleplayer", "rc_singleplayer_room",
"rc_core", "rc_database", "rc_factory",
]
[workspace.dependencies]
rocket = { version = "0.5.1", features = [ "json" ] }
actix-web = { version = "4", default-features = false, features = [ "macros", "compress-brotli", "compress-gzip", "compress-zstd"] }
actix-files = "0.6"
libfj = { version = "0.7.5", path = "../libfj" }
log = "0.4"
env_logger = "0.11"
clap = { version = "4.5", features = [ "derive" ] }
2025-03-08 17:16:02 -05:00
polariton = { version = "0.2", path = "../polariton", features = [ "tokio-async" ] }
polariton_server = { version = "0.2", path = "../polariton/server", features = [ "tokio-async" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
2025-05-07 20:23:22 -04:00
async-trait = "0.1"
chrono = "0.4"