2023-09-24 05:38:22 +02:00
|
|
|
[package]
|
|
|
|
name = "tree-owners"
|
2023-12-27 00:11:28 +01:00
|
|
|
version = "1.0.4"
|
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]
|
2023-12-27 00:08:58 +01:00
|
|
|
anyhow = "1.0.76"
|
|
|
|
clap = { version = "4.4.11", features = ["derive", "cargo", "wrap_help"] }
|
2023-09-24 05:38:22 +02:00
|
|
|
file-owner = "0.1.2"
|
|
|
|
human-panic = "1.2.0"
|
2023-11-27 17:05:11 +01:00
|
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
2023-09-24 05:38:22 +02:00
|
|
|
serde_json = "1.0.107"
|
2023-09-24 12:23:20 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-12-27 00:08:58 +01:00
|
|
|
anyhow = "1.0.76"
|
|
|
|
clap = { version = "4.4.11", features = ["derive", "cargo", "wrap_help"] }
|
2023-09-24 12:23:20 +02:00
|
|
|
clap_complete = "4.4.1"
|