mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-02 19:17:45 +00:00
This is a slightly modified version of the one in Physis, with the required modifications inspired from WorkingRobot's TemporalStatis fork. Thanks so much!
49 lines
1 KiB
TOML
49 lines
1 KiB
TOML
[package]
|
|
name = "kawari"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "kawari-frontier"
|
|
|
|
[[bin]]
|
|
name = "kawari-admin"
|
|
|
|
[[bin]]
|
|
name = "kawari-login"
|
|
|
|
[[bin]]
|
|
name = "kawari-patch"
|
|
|
|
[[bin]]
|
|
name = "kawari-web"
|
|
|
|
[[bin]]
|
|
name = "kawari-lobby"
|
|
|
|
[[bin]]
|
|
name = "kawari-world"
|
|
required-features = ["oodle"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[features]
|
|
default = ["oodle"]
|
|
oodle = []
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6", features = ["json", "tokio", "http1", "form", "query", "headers"], default-features = false }
|
|
serde_json = { version = "1.0", default-features = false }
|
|
tokio = { version = "1.37", features = ["macros", "rt", "rt-multi-thread", "io-util"], default-features = false }
|
|
tracing = { version = "0.1", default-features = false }
|
|
serde = { version = "1.0", features = ["derive"], default-features = false }
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"], default-features = false }
|
|
rand = "0.8"
|
|
minijinja = "2.0"
|
|
binrw = { version = "0.14" }
|
|
md5 = "0.7.0"
|