forked from RodrigoRVSN/groot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 759 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "regroot"
version = "0.3.0"
edition = "2021"
authors = ["RodrigoRVSN", "z1xus"]
description = "A modern, colorful directory tree viewer with glob pattern support"
documentation = "https://github.com/z1xus/regroot"
homepage = "https://github.com/z1xus/regroot"
repository = "https://github.com/z1xus/regroot"
readme = "README.md"
license = "MIT"
keywords = ["tree", "directory", "filesystem", "cli", "glob"]
categories = ["command-line-utilities", "filesystem", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
glob = "0.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]