mirror of
https://github.com/pcvolkmer/bzkf-rwdp-check.git
synced 2025-04-19 11:06:51 +00:00
26 lines
549 B
TOML
26 lines
549 B
TOML
[package]
|
|
name = "bzkf-rwdp-check"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
|
|
console = "0.15"
|
|
csv = "1.3"
|
|
dialoguer = "0.11"
|
|
itertools = "0.12"
|
|
mysql = "24.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
urlencoding = "2.1"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|
|
panic = "abort"
|
|
|
|
|