gupaxx/Cargo.toml

40 lines
776 B
TOML
Raw Normal View History

2022-10-01 16:58:22 +00:00
[package]
name = "gupax"
version = "0.1.0"
edition = "2021"
[dependencies]
dirs = "4.0.0"
chrono = "0.4.22"
2022-10-01 16:58:22 +00:00
eframe = "0.19.0"
egui = "0.19.0"
2022-10-01 16:58:22 +00:00
egui_extras = { version = "0.19.0", features = ["image"] }
env_logger = "0.9.1"
hex-literal = "0.3.4"
2022-10-01 16:58:22 +00:00
image = { version = "0.24.4", features = ["png"] }
log = "0.4.17"
2022-10-01 16:58:22 +00:00
monero = "0.18.0"
num_cpus = "1.13.1"
num-format = "0.4.0"
rand = "0.8.5"
2022-10-01 16:58:22 +00:00
regex = "1.6.0"
reqwest = { version = "0.11.12", features = ["blocking", "json"] }
serde = "1.0.145"
serde_derive = "1.0.145"
sha2 = "0.10.6"
toml = "0.5.9"
2022-10-01 16:58:22 +00:00
[profile.optimized]
codegen-units = 1
2022-10-01 16:58:22 +00:00
debug-assertions = false
debug = false
incremental = true
inherits = "release"
2022-10-01 16:58:22 +00:00
lto = true
overflow-checks = false
rpath = false
strip = "debuginfo"
2022-10-01 16:58:22 +00:00
[profile.optimized.package."*"]
opt-level = 3