Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: If2c377d3b866a33a65d85836bc9010756a6a6964
21 lines
485 B
TOML
21 lines
485 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["lychee", "crates/*"]
|
|
|
|
[workspace.package]
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
clap = { version = "4.6.0", features = ["derive"] }
|
|
iced = { version = "0.14.0", features = ["image", "wayland", "smol"] }
|
|
image = "0.25.10"
|
|
|
|
lychee-cli = { path = "./crates/lychee-cli" }
|
|
lychee-img = { path = "./crates/lychee-img" }
|
|
lychee-core = { path = "./crates/lychee-core" }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|