26 lines
571 B
TOML
26 lines
571 B
TOML
[package]
|
|
name = "floating-calculator"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
cxx = "1.0.194"
|
|
dark-light = "2.0.0"
|
|
iced = { version = "0.14.0", default-features = false, features = ["wgpu", "wayland", "tokio"] }
|
|
iced_layershell = { version = "0.15.0", default-features = false }
|
|
winit = { version = "0.30.12", default-features = false, features = ["wayland"] }
|
|
|
|
[build-dependencies]
|
|
cxx-build = "1.0"
|
|
pkg-config = "0.3"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
panic = "abort"
|
|
debug = false
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|