-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
46 lines (40 loc) · 1.2 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
[package]
name = "hxn"
version = "1.0.0"
edition = "2021"
authors = [ "PwnWriter < [email protected] >" ]
description = "Blazingly fast tool to grab screenshots of url/webpages from terminal."
readme = "README.md"
repository = "https://github.com/pwnwriter/haylxon"
homepage = "https://github.com/pwnwriter/haylxon.git"
license = "MIT"
keywords = ["screenshots", "bug-bounty", "recon", "pwn", "OSINT" ]
categories = ["accessibility", "web-programming", "command-line" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chromiumoxide = { version = "0.6.0", features = ["tokio-runtime"], default-features = false }
reqwest = { version = "0.12.5", default-features = false, features = ["rustls-tls", "trust-dns"] }
clap = { version = "4.5.8", features = ["derive", "string"] }
tokio = { version = "1.38.1", features = ["full"] }
futures = "0.3.30"
columns = "0.1.0"
colored = "2.0.4"
anyhow = "1.0.86"
url = "2.5.2"
regex = "1.10"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false