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

54 lines
1.7 KiB
TOML
Raw Normal View History

2025-04-02 20:59:52 -04:00
[workspace.package]
version = "1.3.0"
2025-04-05 12:03:11 -04:00
edition = "2024"
repository = "https://git.ngram.ca/OpenJam/rc-servers"
license = "GPL-3.0-only"
2025-04-02 20:59:52 -04:00
authors = ["NGnius <ngniusness@gmail.com>"]
readme = "README.md"
[workspace]
members = [
"cdn",
"rc_auth",
"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",
2025-06-10 20:52:36 -04:00
"rc_lobby", "rc_lobby_room",
"rc_core", "rc_database",
"rc_factory", "rc_factory_web",
"rc_multiplayer",
"rc_plugins",
"rc_society",
]
resolver = "3"
[workspace.dependencies]
actix-web = { version = "4", default-features = false, features = [ "macros", "compress-brotli", "compress-gzip", "compress-zstd", "ws"] }
actix-files = "0.6"
2026-02-08 17:36:23 -05:00
#libfj = { version = "0.10", path = "../libfj" }
libfj = { version = "0.10" }
log = "0.4"
env_logger = "0.11"
clap = { version = "4.5", features = [ "derive" ] }
2026-04-01 19:11:06 -04:00
#polariton = { version = "0.6", path = "../polariton", features = [ "tokio-async" ] }
#polariton_server = { version = "0.6", path = "../polariton/server", features = [ "tokio-async" ] }
polariton = { version = "0.6", features = [ "tokio-async" ] }
polariton_server = { version = "0.6", 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"
futures = "0.3"
chrono = "0.4"
git-version = "0.3"
rand = { version = "0.10", features = [ "thread_rng" ] }
num-quaternion = "1.0"
2025-10-06 22:57:19 -04:00
hex = "0.4"
base64 = "0.22"
2026-02-08 14:35:18 -05:00
#oj_serdes = { version = "0.3.0", path = "../oj_core/serdes" }
oj_serdes = "0.3.0"
oj_convert = { version = "0.3.0", path = "../oj_core/convert" }
#oj_convert = "0.3.0"