tundlebool/Cargo.toml
2025-04-18 00:15:28 +02:00

42 lines
896 B
TOML

[package]
name = "tundlebool"
version = "0.1.0"
edition = "2024"
[dependencies]
egui = "0.31.1"
eframe = "0.31.1"
env_logger = "0.11.8"
anyhow = "1.0.97"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
registry = "1.3.0"
dirs = "6.0.0"
keyvalues-parser = "0.2.0"
crossbeam-channel = "0.5.14"
rfd = { version = "0.15.3", features = ["xdg-portal"] }
regex = "1.11.1"
sha2 = "0.10.8"
hex = "0.4.3"
egui_alignments = "0.3.4"
log = "0.4.27"
egui-modal = { path = "./egui-modal" }
chrono-humanize = "0.2.3"
chrono = "0.4.40"
egui_extras = "0.31.1"
image = { version = "0.25.6", default-features = false, features = ["gif", "jpeg", "png", "webp", "bmp"] }
[workspace]
members = ["egui-modal"]
[profile.special]
inherits = "release"
opt-level = 3
strip = true
lto = "fat"
debug-assertions = false
overflow-checks = false
panic = "abort"
incremental = false
debug = false