1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/Cargo.toml
MaxSignal 5fd4acdf62 add factory web frontend (#77)
### Description

This PR adds a web frontend for factory.
Please let me know if you think the directory names or API endpoints should be changed.
For example, I personally think there are better names than rc_factory_api, and there may be better API names than webui...

### Game

Robocraft

### Please confirm

- [x] I am the legal owner or represent the owner of all work submitted
- [x] I consent to my submission being added to this FOSS project
- [x] This PR used LLMs to generate some or all of the code changes

Reviewed-on: https://git.ngram.ca/OpenJam/rc-servers/pulls/77
Reviewed-by: NGnius <ngniusness@gmail.com>
Co-authored-by: MaxSignal <kastera58@gmail.com>
Co-committed-by: MaxSignal <kastera58@gmail.com>
2026-01-17 20:00:14 +00:00

54 lines
1.6 KiB
TOML

[package]
name = "rc-servers"
version.workspace = true
edition.workspace = true
[workspace.package]
version = "1.1.0"
edition = "2024"
repository = "https://git.ngram.ca/OpenJam/rc-servers"
license = "GPL-3.0-only"
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",
"rc_singleplayer", "rc_singleplayer_room",
"rc_lobby", "rc_lobby_room",
"rc_core", "rc_database", "rc_factory",
"rc_factory_web" ,"rc_multiplayer",
"rc_plugins",
]
[workspace.dependencies]
actix-web = { version = "4", default-features = false, features = [ "macros", "compress-brotli", "compress-gzip", "compress-zstd", "ws"] }
actix-files = "0.6"
libfj = { version = "0.9", path = "../libfj" }
#libfj = { version = "0.8" }
log = "0.4"
env_logger = "0.11"
clap = { version = "4.5", features = [ "derive" ] }
#polariton = { version = "0.4", path = "../polariton", features = [ "tokio-async" ] }
#polariton_server = { version = "0.4", path = "../polariton/server", features = [ "tokio-async" ] }
polariton = { version = "0.4", features = [ "tokio-async" ] }
polariton_server = { version = "0.4", features = [ "tokio-async" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
async-trait = "0.1"
futures = "0.3"
chrono = "0.4"
git-version = "0.3"
rand = { version = "0.9", features = [ "thread_rng" ] }
num-quaternion = "1.0"
hex = "0.4"
base64 = "0.22"
#oj_serdes = { version = "0.2.0", path = "../oj_core/serdes" }
oj_serdes = "0.2.0"