-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 960 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
authors = ["Alecto Irene Perez <perez.cs@pm.me>"]
description = """untree inverts the action of tree. \
It allows you to create directory trees from a textual \
representation of the tree."""
edition = "2021"
license = "MIT"
name = "untree"
version = "0.9.10"
homepage = "https://github.com/codeinred/untree"
repository = "https://github.com/codeinred/untree"
documentation = "https://docs.rs/untree"
readme = "README.md"
# Exclude media and input files from crate
exclude = ["inputs/"]
[lib]
name = "untree"
path = "lib/mod.rs"
[[bin]]
name = "untree"
path = "src/main.rs"
required-features = ["build-binary"]
# Building the binary requires clap
[features]
default = ["build-binary"]
build-binary = ["clap"]
[dependencies]
colored = "2"
quick-error = "2"
textwrap = { version = "0.16", features = ["terminal_size"] }
embed-doc-image = "0.1"
clap = { version = "3.0.13", features = [
"derive",
"wrap_help",
], optional = true }