-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
48 lines (41 loc) · 1.16 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
[package]
name = "kanha"
version = "0.1.2"
edition = "2021"
authors = [ "PwnWriter < [email protected] >" ]
description = "🦚 Compile once, Hack forever"
readme = "README.md"
repository = "https://github.com/pwnwriter/kanha"
homepage = "https://github.com/pwnwriter/kanha.git"
license = "MIT"
keywords = ["recon", "red_teaming", "pentesting", "osint"]
categories = ["accessibility", "web-programming", "command-line" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.11", features = ["derive", "string"] }
reqwest = { version = "0.11.20", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1.33.0", features = ["full"] }
serde = { version = "1.0.193", features = ["derive"] }
colored = "2.0.4"
futures = "0.3.30"
lazy_static = "1.4.0"
dns-lookup = "2.0.4"
serde_json = "1.0.108"
urlencoding = "2.1.3"
anyhow = "1.0.75"
[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