xdbm/Cargo.toml

38 lines
1 KiB
TOML
Raw Normal View History

2023-08-25 23:51:45 +09:00
[package]
name = "xdbm"
2024-06-19 18:31:29 +09:00
version = "0.2.1"
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]
2024-03-17 04:08:47 +09:00
clap = { version = "4.4.0", features = ["cargo", "derive"] }
sysinfo = { version = "0.30", features = ["serde"] }
2023-08-25 23:51:45 +09:00
log = "0.4"
2024-06-19 17:37:42 +09:00
clap-verbosity-flag = "2.2"
clap_complete = "4.5"
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.11.3"
inquire = "0.7.5"
git2 = "0.19"
2023-08-25 23:51:45 +09:00
dirs = "5.0"
dunce = "1.0.4"
2023-08-25 23:51:45 +09:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
byte-unit = "5.1.4"
2023-08-27 17:49:18 +09:00
anyhow = "1.0"
2023-12-04 21:34:24 +09:00
pathdiff = "0.2.1"
2024-06-19 18:09:20 +09:00
unicode-width = "0.1.13"
[dev-dependencies]
assert_cmd = "2.0.14"
assert_fs = "1.1.1"
predicates = "3.1.0"