-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (38 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
46 lines (38 loc) · 1.1 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
[package]
name = "domain-grabber-cli"
edition = "2021"
authors = ["decryptable <decryptable1337@gmail.com>"]
description = "A CLI tool to grab domains"
readme = "README.md"
[profile.release]
strip = "symbols"
debug = false
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[build]
target = "x86_64-unknown-linux-gnu"
[target.x86_64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu"
[target.x86_64-pc-windows-gnu]
image = "ghcr.io/cross-rs/x86_64-pc-windows-gnu"
[target.x86_64-apple-darwin]
image = "ghcr.io/cross-rs/x86_64-apple-darwin"
[target.aarch64-apple-darwin]
image = "ghcr.io/cross-rs/aarch64-apple-darwin"
[dependencies]
chalk_rs = "1.0.1"
clap = { version = "4.5.28", features = ["derive"] }
figlet-rs = "0.1.5"
tokio = { version = "1.43.0", features = ["full"] }
reqwest = { version = "0.12.12", default_features = false, features = [
"json",
"rustls-tls",
] }
spinners = "4.1.1"
inquire = { version = "0.7.5", features = ["date"] }
chrono = "0.4.39"
debugoff = { version = "0.2.1", features = ["obfuscate", "syscallobf"] }
obfstr = "0.4.4"
quick-xml = "0.37.2"