f70cf4415c
Divergent development line off origin/main (11a811d): a broad refactor across routes/services/models/app + a large integration_test expansion (+1000), plus an untracked game-independent inventory query service and Docker files. Preserved verbatim before moving the canonical Core checkout to the committed migration trunk (66c88fb). Reconciling this refactor with the migration trunk is a separate user decision; nothing here is lost.
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[package]
|
|
name = "openfut-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["OpenFUT Contributors"]
|
|
description = "Offline Ultimate Team backend — game-independent core"
|
|
license = "MIT"
|
|
repository = "https://git.aleshym.co/funman300/OpenFUT-Core.git"
|
|
|
|
[lib]
|
|
name = "openfut_core"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "openfut-core"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7", features = ["macros"] }
|
|
http = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio-rustls", "migrate", "chrono", "uuid"] }
|
|
tower-http = { version = "0.5", features = ["cors", "trace", "request-id"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
thiserror = "1"
|
|
anyhow = "1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
dotenvy = "0.15"
|
|
axum-macros = "0.4"
|
|
|
|
[dev-dependencies]
|
|
axum-test = "14"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower = { version = "0.5", features = ["util"] }
|