mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
27 lines
790 B
TOML
27 lines
790 B
TOML
[package]
|
|
name = "servers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"auth",
|
|
"polariton_auth",
|
|
"rc_services", "rc_services_room",
|
|
"rc_static_data", "rc_microtransactions",
|
|
"rc_social", "rc_social_room",
|
|
"rc_chat", "rc_chat_room",
|
|
"rc_singleplayer", "rc_singleplayer_room",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
rocket = { version = "0.5.1", features = [ "json" ] }
|
|
libfj = { version = "0.7.5", path = "../libfj" }
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
clap = { version = "4.5", features = [ "derive" ] }
|
|
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"
|