mirror of
https://github.com/edu4rdshl/rusnapshot.git
synced 2026-07-17 23:24:55 +00:00
27 lines
605 B
TOML
27 lines
605 B
TOML
[package]
|
|
name = "rusnapshot"
|
|
version = "0.4.1"
|
|
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.5.37", features = ["derive", "env"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
sqlite = "0.33.0"
|
|
md5 = "0.7.0"
|
|
chrono = "0.4.40"
|
|
prettytable-rs = "0.10.0"
|
|
anyhow = "1.0.98"
|
|
toml = "0.8.20"
|
|
hostname = "0.3.1"
|
|
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
incremental = false
|
|
opt-level = "s"
|