rusnapshot/Cargo.toml
2024-02-05 03:31:00 -05:00

26 lines
585 B
TOML

[package]
name = "rusnapshot"
version = "0.3.0"
authors = ["edu4rdshl"]
edition = "2018"
description = "Simple and handy btrfs snapshoting tool."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.18", features = ["derive", "env"] }
serde = { version = "1.0.188", features = ["derive"] }
sqlite = "0.33.0"
md5 = "0.7.0"
chrono = "0.4.33"
prettytable-rs = "0.10.0"
anyhow = "1.0.79"
toml = "0.8.9"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
opt-level = "s"