-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (68 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "subscan"
version = "1.1.2"
edition = "2021"
description = "A subdomain enumeration tool leveraging diverse techniques, designed for advanced pentesting operations"
documentation = "https://docs.rs/subscan"
homepage = "https://www.erdoganyoksul.com/subscan"
readme = "README.md"
authors = ["Erdoğan YOKSUL <erdoganyoksul3@gmail.com>"]
repository = "https://github.com/eredotpkfr/subscan"
license-file = "LICENSE"
keywords = [
"pentesting-tool",
"subdomain-finder",
"bruteforce",
"zonetransfer",
"searchengines",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.84"
chrono = "0.4.38"
clap = { version = "4.5.26", features = ["derive"] }
clap-verbosity-flag = "3.0.2"
colog = "1.3.0"
colored = "3.0.0"
csv = "1.3.1"
derive_more = { version = "1.0.0", features = ["display", "from"] }
dns-lookup = "2.0.4"
dotenvy = "0.15.7"
enum_dispatch = "0.3.13"
env_logger = "0.11.6"
flume = "0.11.1"
futures = "0.3.31"
headless_chrome = { version = "1.0.15", default-features = false, features = ["fetch"] }
hickory-client = { version = "0.24.2", default-features = false }
hickory-resolver = { version = "0.24.2", default-features = false, features = ["system-config"] }
itertools = "0.14.0"
lazy_static = "1.5.0"
log = "0.4.22"
prettytable-rs = "0.10.0"
regex = "1.11.1"
reqwest = { version = "0.12.11", features = ["json", "stream"] }
scraper = "0.22.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "tokio-macros"] }
tokio-util = "0.7.12"
url = "2.5.4"
[dev-dependencies]
automod = "1.0.14"
hickory-server = "0.24.1"
md5 = "0.7.0"
stubr = "0.6.2"
tempfile = "3.15.0"
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
panic = "abort"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
[profile.coverage-ci]
inherits = "release"
[package.metadata.cargo-machete]
ignored = ["prettytable-rs"]