-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 597 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 597 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "rusnapshot"
version = "0.9.0"
authors = ["edu4rdshl"]
edition = "2024"
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.6.6", features = ["derive", "env"] }
serde = { version = "1.0.229", features = ["derive"] }
sqlite = "0.37.0"
md5 = "0.8.1"
chrono = "0.4.45"
prettytable-rs = "0.10.0"
anyhow = "1.0.104"
toml = "1.1.4"
hostname = "0.4.2"
libc = "0.2.189"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
strip = true