v0.2.0: big refactor and improvements.

This commit is contained in:
Eduard Tolosa 2024-02-05 01:27:12 -05:00
parent b19e7579c6
commit c32742b355
12 changed files with 507 additions and 1562 deletions

View file

@ -1,21 +1,20 @@
[package]
name = "rusnapshot"
version = "0.1.0"
version = "0.2.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 = "2.34.0", features = ["yaml"] }
reqwest = { version = "0.11.18", features = ["default-tls"] }
openssl = { version = "0.10.54", features = ["vendored"] }
config = { version = "0.11.0", features = ["yaml", "json", "toml", "hjson", "ini"] }
failure = "0.1.8"
sqlite = "0.26.0"
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.26"
prettytable-rs = "0.8.0"
chrono = "0.4.33"
prettytable-rs = "0.10.0"
anyhow = "1.0.79"
[profile.release]