xdbm/Cargo.toml

30 lines
694 B
TOML
Raw Normal View History

2023-08-25 23:51:45 +09:00
[package]
name = "xdbm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.0", features = ["derive"] }
sysinfo = { version = "0.29.8", features = ["serde"] }
2023-08-25 23:51:45 +09:00
log = "0.4"
clap-verbosity-flag = "2.0.1"
chrono = { version = "0.4.35", features = ["serde"] }
2023-08-25 23:51:45 +09:00
env_logger = "0.10.0"
inquire = "0.6.2"
git2 = "0.17.2"
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"
2023-08-27 17:49:18 +09:00
byte-unit = "4.0.19"
anyhow = "1.0"
2023-12-04 21:34:24 +09:00
pathdiff = "0.2.1"
2024-03-03 06:11:25 +09:00
unicode-width = "0.1.11"
[dev-dependencies]
assert_cmd = "2.0.14"
assert_fs = "1.1.1"
predicates = "3.1.0"