0
0
Fork 0
tree-owners/Cargo.toml

28 lines
823 B
TOML
Raw Normal View History

2023-09-24 05:38:22 +02:00
[package]
name = "tree-owners"
2023-09-24 14:54:08 +02:00
version = "0.2.0"
2023-09-24 05:38:22 +02:00
edition = "2021"
2023-09-24 06:23:20 +02:00
2023-09-24 05:38:22 +02:00
authors = ["Adrian Wannenmacher <tfld@tfld.dev>"]
2023-09-24 06:23:20 +02:00
license = "EUPL-1.2"
2023-09-24 07:38:07 +02:00
repository = "https://github.com/TeFiLeDo/tree-owners"
2023-09-24 06:23:20 +02:00
2023-09-24 05:38:22 +02:00
description = "Find all owners (user and group) inside a directory tree."
2023-09-24 06:23:20 +02:00
categories = ["command-line-utilities", "filesystem"]
2023-09-24 07:38:07 +02:00
keywords = ["cli", "linux", "file"]
2023-09-24 05:38:22 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.4", features = ["derive", "cargo", "wrap_help"] }
file-owner = "0.1.2"
human-panic = "1.2.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
2023-09-24 12:23:20 +02:00
[build-dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.4", features = ["derive", "cargo", "wrap_help"] }
clap_complete = "4.4.1"