Files
tundlebool/Cargo.toml

42 lines
896 B
TOML
Raw Normal View History

2025-04-02 23:31:10 +02:00
[package]
name = "tundlebool"
version = "0.1.0"
edition = "2024"
[dependencies]
2025-04-03 21:47:34 +02:00
egui = "0.31.1"
eframe = "0.31.1"
env_logger = "0.11.8"
anyhow = "1.0.97"
serde = { version = "1.0.219", features = ["derive"] }
2025-04-15 18:08:34 +02:00
serde_json = "1.0.140"
2025-04-03 21:47:34 +02:00
registry = "1.3.0"
dirs = "6.0.0"
keyvalues-parser = "0.2.0"
2025-04-15 18:08:34 +02:00
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"
2025-04-16 23:23:17 +02:00
log = "0.4.27"
egui-modal = { path = "./egui-modal" }
2025-04-17 00:39:10 +02:00
chrono-humanize = "0.2.3"
chrono = "0.4.40"
egui_extras = "0.31.1"
2025-04-18 00:15:28 +02:00
image = { version = "0.25.6", default-features = false, features = ["gif", "jpeg", "png", "webp", "bmp"] }
2025-04-15 18:08:34 +02:00
2025-04-16 23:23:17 +02:00
[workspace]
2025-04-17 00:39:10 +02:00
members = ["egui-modal"]
2025-04-18 00:15:28 +02:00
[profile.special]
inherits = "release"
opt-level = 3
strip = true
lto = "fat"
debug-assertions = false
overflow-checks = false
panic = "abort"
incremental = false
debug = false