-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (66 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
73 lines (66 loc) · 2.03 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
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
[package]
name = "subscan"
version = "1.3.0"
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.89"
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.6.0", features = ["derive"] }
clap-verbosity-flag = "3.0.4"
colog = "1.3.0"
colored = "3.1.1"
csv = "1.4.0"
derive_more = { version = "2.0.1", features = ["deref", "display", "from"] }
dotenvy = "0.15.7"
enum_dispatch = "0.3.13"
env_logger = "0.11.9"
flume = "0.12.0"
futures = "0.3.32"
headless_chrome = { version = "1.0.21", default-features = false, features = ["fetch"] }
hickory-client = { version = "0.25.2", default-features = false }
hickory-resolver = { version = "0.25.2", default-features = false, features = ["system-config", "tokio"] }
itertools = "0.14.0"
log = "0.4.28"
prettytable-rs = "0.10.0"
regex = "1.12.3"
reqwest = { version = "0.13.1", features = ["json", "stream", "form"] }
scraper = "0.26.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.51.1", features = ["macros", "rt-multi-thread", "tokio-macros"] }
tokio-util = "0.7.18"
url = "2.5.8"
[dev-dependencies]
automod = "1.0.16"
hickory-server = "0.25.2"
md5 = "0.8.0"
stubr = "0.6.2"
tempfile = "3.27.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"]