2025-01-25 17:40:47 -05:00
|
|
|
[package]
|
|
|
|
|
name = "servers"
|
2025-04-02 20:59:52 -04:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
2025-08-11 20:50:44 -04:00
|
|
|
version = "0.4.0"
|
2025-04-05 12:03:11 -04:00
|
|
|
edition = "2024"
|
2025-04-02 20:59:52 -04:00
|
|
|
repository = "https://git.ngram.ca/OpenJam/servers"
|
2025-06-03 21:09:03 -04:00
|
|
|
license = "GPL-3.0-only"
|
2025-04-02 20:59:52 -04:00
|
|
|
authors = ["NGnius <ngniusness@gmail.com>"]
|
|
|
|
|
readme = "README.md"
|
2025-01-25 17:40:47 -05:00
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
|
members = [
|
2025-09-17 17:30:05 -04:00
|
|
|
"cdn",
|
2025-07-27 16:12:20 -04:00
|
|
|
"rc_auth",
|
2025-02-23 16:10:21 -05:00
|
|
|
"polariton_auth",
|
|
|
|
|
"rc_services", "rc_services_room",
|
2025-05-24 13:42:53 -04:00
|
|
|
"rc_microtransactions",
|
2025-02-23 16:10:21 -05:00
|
|
|
"rc_social", "rc_social_room",
|
2025-03-18 16:47:11 -04:00
|
|
|
"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",
|
2025-05-17 23:06:07 -04:00
|
|
|
"rc_core", "rc_database", "rc_factory",
|
2025-07-01 20:04:11 -04:00
|
|
|
"rc_multiplayer",
|
2025-01-25 17:40:47 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
rocket = { version = "0.5.1", features = [ "json" ] }
|
2025-05-25 12:26:08 -04:00
|
|
|
actix-web = { version = "4", default-features = false, features = [ "macros", "compress-brotli", "compress-gzip", "compress-zstd"] }
|
2025-05-24 13:42:53 -04:00
|
|
|
actix-files = "0.6"
|
2025-06-03 21:09:03 -04:00
|
|
|
#libfj = { version = "0.8", path = "../libfj" }
|
|
|
|
|
libfj = { version = "0.8" }
|
2025-01-25 17:40:47 -05:00
|
|
|
log = "0.4"
|
|
|
|
|
env_logger = "0.11"
|
2025-02-05 21:19:27 -05:00
|
|
|
clap = { version = "4.5", features = [ "derive" ] }
|
2025-08-31 10:44:53 -04:00
|
|
|
polariton = { version = "0.4", path = "../polariton", features = [ "tokio-async" ] }
|
|
|
|
|
polariton_server = { version = "0.4", path = "../polariton/server", features = [ "tokio-async" ] }
|
|
|
|
|
#polariton = { version = "0.3", features = [ "tokio-async" ] }
|
|
|
|
|
#polariton_server = { version = "0.3", features = [ "tokio-async" ] }
|
2025-03-09 16:28:03 -04:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
|
serde_json = "1.0"
|
2025-05-07 20:23:22 -04:00
|
|
|
async-trait = "0.1"
|
2025-05-17 23:06:07 -04:00
|
|
|
chrono = "0.4"
|
2025-05-30 23:11:51 -04:00
|
|
|
git-version = "0.3"
|
2025-06-03 21:09:03 -04:00
|
|
|
rand = { version = "0.9", features = [ "thread_rng" ] }
|
2025-08-03 16:23:00 -04:00
|
|
|
num-quaternion = "1.0"
|