27 lines
523 B
TOML
27 lines
523 B
TOML
|
|
[workspace]
|
||
|
|
resolver = "2"
|
||
|
|
members = [
|
||
|
|
"crates/cube-core",
|
||
|
|
"apps/cube",
|
||
|
|
]
|
||
|
|
|
||
|
|
[workspace.package]
|
||
|
|
edition = "2021"
|
||
|
|
license = "MIT"
|
||
|
|
authors = ["Fam Zheng <fam@euphon.net>"]
|
||
|
|
|
||
|
|
[workspace.dependencies]
|
||
|
|
axum = "0.7"
|
||
|
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
tower = "0.5"
|
||
|
|
tower-http = { version = "0.6", features = ["fs", "trace"] }
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
opt-level = "z"
|
||
|
|
lto = true
|
||
|
|
codegen-units = 1
|
||
|
|
strip = true
|
||
|
|
panic = "abort"
|