24 lines
438 B
TOML
24 lines
438 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.dependencies]
|
|
haku.path = "crates/haku"
|
|
haku2.path = "crates/haku2"
|
|
log = "0.4.22"
|
|
tiny-skia = { version = "0.11.4", default-features = false }
|
|
|
|
[profile.dev.package.rkgk-image-ops]
|
|
opt-level = 3
|
|
|
|
[profile.wasm-dev]
|
|
inherits = "dev"
|
|
panic = "abort"
|
|
opt-level = 1
|
|
|
|
[profile.wasm-dev.package.tiny-skia]
|
|
opt-level = 3
|
|
|
|
[profile.wasm-release]
|
|
inherits = "release"
|
|
panic = "abort"
|