xdbm/Cargo.toml

39 lines
1 KiB
TOML
Raw Permalink Normal View History

2023-08-25 23:51:45 +09:00
[package]
name = "xdbm"
2024-12-02 13:10:28 +09:00
version = "0.3.0"
2024-03-17 03:25:44 +09:00
authors = ["qwjyh <urataw421@gmail.com>"]
2023-08-25 23:51:45 +09:00
edition = "2021"
description = "Cross device backup manager, which manages backups on several storages mounted on multiple devices."
readme = "README.md"
2024-03-17 03:25:44 +09:00
homepage = "https://github.com/qwjyh/xdbm"
repository = "https://github.com/qwjyh/xdbm"
license = "MIT OR Apache-1.0"
keywords = ["cli", "backup"]
2023-08-25 23:51:45 +09:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["cargo", "derive"] }
sysinfo = { version = "0.32", features = ["serde"] }
2023-08-25 23:51:45 +09:00
log = "0.4"
clap-verbosity-flag = "3.0"
clap_complete = "4.5"
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.11.5"
inquire = "0.7.5"
git2 = "0.19"
2023-08-25 23:51:45 +09:00
dirs = "5.0"
dunce = "1.0.5"
2023-08-25 23:51:45 +09:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
byte-unit = "5.1"
2023-08-27 17:49:18 +09:00
anyhow = "1.0"
pathdiff = "0.2.3"
unicode-width = "0.2.0"
console = "0.15"
[dev-dependencies]
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
predicates = "3.1.2"