BreweryControlSystem/code/Cargo.toml

32 lines
880 B
TOML

[package]
name = "code"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
bigdecimal = "0.4.10"
chrono = { version = "0.4.44", features = ["serde"] }
config = { version = "0.15.24", features = ["json"] }
dotenvy = "0.15.7"
eframe = {version = "0.34.2", features = ["glow"]}
egui = "0.34.2"
egui_dock = "0.19.1"
egui_extras = {version = "0.34.2", features = ["datepicker"]}
hex = "0.4.3"
jiff = "0.2.29"
rust_decimal = {version = "1.42.0", features = ["macros"]}
rust_xlsxwriter = {version="0.95.0",features=["chrono"]}
sha2 = "0.11.0"
sqlx = {version="0.8.6", features = ["runtime-tokio", "mysql","bigdecimal","chrono"]}
tokio={version = "1.52.3", features = ["full"]}
[target.'cfg(target_os="windows")'.dependencies]
eframe = {version ="0.34.2",default-features=false, features=["glow"]}
[profile.release]
opt-level="z"
lto=true
codegen-units=1
debug=false