All checks were successful
CI / Check / Test (push) Successful in 3m40s
Co-authored-by: Copilot <copilot@github.com>
30 lines
622 B
TOML
30 lines
622 B
TOML
[workspace]
|
|
members = [
|
|
"crates/adapters/assets",
|
|
"crates/adapters/wayland",
|
|
"crates/application",
|
|
"crates/bin",
|
|
"crates/domain",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
authors = ["Gabriel Kaszewski"]
|
|
|
|
[workspace.dependencies]
|
|
domain = { path = "crates/domain" }
|
|
application = { path = "crates/application" }
|
|
wayland = { path = "crates/adapters/wayland" }
|
|
assets = { path = "crates/adapters/assets" }
|
|
thiserror = { version = "2.0", default-features = false }
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
strip = true
|
|
codegen-units = 1
|
|
panic = "abort"
|