2026-05-04 11:22:59 +01:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
|
|
|
|
"crates/cube-core",
|
|
|
|
|
"apps/cube",
|
2026-05-04 15:12:22 +01:00
|
|
|
"apps/simpleasm",
|
2026-05-09 22:36:14 +01:00
|
|
|
"apps/music",
|
2026-05-04 11:22:59 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[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"] }
|
2026-05-04 15:12:22 +01:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
2026-05-10 14:51:53 +01:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
tokio-stream = "0.1"
|
2026-05-04 11:22:59 +01:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
opt-level = "z"
|
|
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
strip = true
|
|
|
|
|
panic = "abort"
|