mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
### 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>
25 lines
625 B
TOML
25 lines
625 B
TOML
[package]
|
|
name = "oj_factory_web"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
readme.workspace = true
|
|
|
|
[dependencies]
|
|
actix-web.workspace = true
|
|
actix-files.workspace = true
|
|
clap.workspace = true
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
git-version.workspace = true
|
|
base64.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
handlebars = { version = "6", features = ["dir_source"] }
|
|
|
|
libfj.workspace = true
|
|
oj_rc_core = { version = "*", path = "../rc_core" }
|
|
oj_rc_factory = { version = "*", path = "../rc_factory" }
|