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

Implementing the factory web API

This commit is contained in:
MaxSignal
2026-01-14 06:56:00 +00:00
parent 455b466621
commit 16f0761380
10 changed files with 249 additions and 2 deletions

21
rc_factory_api/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "oj_factory_api"
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
authors.workspace = true
readme.workspace = true
[dependencies]
actix-web.workspace = true
clap.workspace = true
log.workspace = true
env_logger.workspace = true
git-version.workspace = true
base64.workspace = true
serde_json.workspace = true
libfj.workspace = true
oj_rc_core = { version = "*", path = "../rc_core" }
oj_rc_factory = { version = "*", path = "../rc_factory" }