55 lines
1.9 KiB
TOML
55 lines
1.9 KiB
TOML
[package]
|
|
name = "api-server"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-stream = "0.3"
|
|
axum = "0.8"
|
|
base64 = "0.22"
|
|
bytes = "1"
|
|
dotenvy = "0.15"
|
|
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "webp"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
webp = "0.3"
|
|
module-ai = { path = "../module-ai" }
|
|
module-assets = { path = "../module-assets" }
|
|
module-auth = { path = "../module-auth" }
|
|
module-big-fish = { path = "../module-big-fish" }
|
|
module-combat = { path = "../module-combat" }
|
|
module-custom-world = { path = "../module-custom-world" }
|
|
module-inventory = { path = "../module-inventory" }
|
|
module-npc = { path = "../module-npc" }
|
|
module-puzzle = { path = "../module-puzzle" }
|
|
module-runtime = { path = "../module-runtime" }
|
|
module-runtime-story-compat = { path = "../module-runtime-story-compat" }
|
|
module-runtime-item = { path = "../module-runtime-item" }
|
|
module-story = { path = "../module-story" }
|
|
platform-auth = { path = "../platform-auth" }
|
|
platform-llm = { path = "../platform-llm" }
|
|
platform-oss = { path = "../platform-oss" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
shared-contracts = { path = "../shared-contracts" }
|
|
shared-kernel = { path = "../shared-kernel" }
|
|
shared-logging = { path = "../shared-logging" }
|
|
spacetime-client = { path = "../spacetime-client" }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "time"] }
|
|
tokio-stream = "0.1"
|
|
time = { version = "0.3", features = ["formatting"] }
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
tracing = "0.1"
|
|
url = "2"
|
|
urlencoding = "2"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
base64 = "0.22"
|
|
hmac = "0.12"
|
|
httpdate = "1"
|
|
http-body-util = "0.1"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
|
|
sha1 = "0.10"
|
|
tower = { version = "0.5", features = ["util"] }
|