forked from BlackArch/wordlistctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 1.03 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
[package]
name = "rwordlistctl"
version = "0.10.0-alpha.1.6.0"
edition = "2021"
authors = ["Sable-20", "blackarch"]
description = "Rust rewrite of wordlistctl: Fetch, install and search wordlist archives from websites."
license = "GPLv3"
repository = "https://github.com/Sable-20/rwordlistctl"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi_term = "0.12.1"
clap = { version = "4.5.3", features = ["cargo", "derive"] }
clap_complete = "4.5.2"
color-eyre = "0.6.3"
env_logger = "0.11.3"
error-chain = "0.12.4"
flate2 = "1.0.28"
futures = "0.3.30"
log = "0.4.21"
pretty_env_logger = "0.5.0"
regex = "1.10.4"
reqwest = { version = "0.12.2", features = ["gzip", "deflate", "stream", "blocking", "brotli"] }
serde = { version = "1.0.197", features = ["derive"] }
tar = "0.4.40"
tokio = { version = "1.37.0", features = ["full"] }
toml = "0.8.12"
inquire = "0.7.4"
[build-dependencies]
clap_mangen = "0.2.20"
clap_complete = "*"
clap = { version = "4.5.3", features = ["cargo", "derive"] }