-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (43 loc) · 1.17 KB
/
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
42
43
44
45
46
47
[package]
name = "node-prune"
version = "1.0.0"
authors = ["Jaye Lee <[email protected]>"]
license = "MIT"
description = "Remove unnecessary files from node_modules"
readme = "README.md"
homepage = "https://github.com/makeco/node-prune"
repository = "https://github.com/makeco/node-prune"
keyword = ["cli", "node", "node_modules", "node-prune"]
categories = ["command-line-utilities"]
default-run = "node-prune"
edition = "2018"
build = "build.rs"
[[bin]]
name = "node-prune"
path = "src/bin/node-prune.rs"
doctest = true
[dependencies]
walkdir = "2.2.9"
structopt = "0.3.7"
log = "0.4.8"
atty = "0.2.14"
serde_json = "1.0"
anyhow = "1.0.57"
serde = { version = "1.0.123", features = ["derive"] }
clap = { version = "3.1.18", features = ["derive"] }
clap_mangen = "0.1.6"
tokio = { version = "1.20.0", features = ["full"] }
[dev-dependencies]
assert_cmd = "1.0.2"
predicates = "1.0.2"
[build-dependencies]
walkdir = "2.2.9"
structopt = "0.3.7"
log = "0.4.8"
atty = "0.2.14"
serde_json = "1.0"
anyhow = "1.0.57"
serde = { version = "1.0.123", features = ["derive"] }
clap = { version = "3.1.18", features = ["derive"] }
clap_mangen = "0.1.6"
tokio = { version = "1.20.0", features = ["full"] }