1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-19 22:36:49 +00:00
kawari/Cargo.toml

31 lines
816 B
TOML
Raw Normal View History

2023-10-04 19:06:59 -04:00
[package]
name = "kawari"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "kawari-frontier"
2023-10-05 12:09:05 -04:00
[[bin]]
name = "kawari-admin"
2023-10-05 13:09:21 -04:00
[[bin]]
name = "kawari-login"
2023-10-06 17:46:58 -04:00
[[bin]]
name = "kawari-patch"
2023-10-04 19:06:59 -04:00
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
panic = "abort"
[dependencies]
2023-10-06 17:46:58 -04:00
axum = { version = "0.6.20", features = ["json", "tokio", "http1", "form", "query", "headers"], default-features = false }
2023-10-04 19:06:59 -04:00
serde_json = { version = "1.0.91", default-features = false }
tokio = { version = "1.32.0", features = ["macros", "rt", "rt-multi-thread"], default-features = false }
tracing = { version = "0.1.37", default-features = false }
serde = { version = "1.0.188", features = ["derive"], default-features = false }
tracing-subscriber = { version = "0.3.17", features = ["fmt"], default-features = false }