-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.05 KB
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
[package]
name = "dirble"
version = "1.4.2"
authors = ["Izzy Whistlecroft <izzy.whistlecroft@nccgroup.com>"]
edition = "2024"
build = "build.rs"
license = "GPL-3-or-later"
description = "Fast directory scanning and scraping tool"
[dependencies]
curl = "0.4.19"
percent-encoding = "2.1"
clap = { version = "4.5.32", features = ["cargo", "derive"] }
select = "0.6"
chardet = "0.2.4"
encoding = "0.2.33"
atty = "0.2.11"
colored = "3.0"
rand = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_test = "1.0"
simple_xml_serialize = "0.3.0"
simple_xml_serialize_macro = "0.3.0"
log = "0.4.6"
simplelog = "0.12.2"
ctrlc = "3.0"
url = "2.1"
time = "0.3.39"
[build-dependencies]
vergen-gix = { version = "1.0.6", features = ["build", "si"] }
[features]
release_version_string = []
[dev-dependencies]
axum = "0.8.3"
http = "1.3.1"
insta = { version = "1.42.2", features = ["filters"] }
phf = { version = "0.11.3", features = ["macros"] }
pretty_assertions = "1.4.1"
tempfile = "3.19.1"
tokio = { version = "1.44.1", features = ["net", "macros", "rt"] }