-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (63 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
69 lines (63 loc) · 1.48 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
[package]
name = "goran"
version = "0.1.7"
edition = "2021"
authors = ["Luis Cardoso <luis@luiscardoso.dev>"]
description = "Goran is a CLI tool for analyzing domains and IP addresses."
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/beowolx/goran"
keywords = ["domain", "ip", "analysis", "cli"]
categories = ["security"]
[profile.release]
debug = false
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
opt-level = "z"
[dependencies]
# Networking
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
] }
rustls = "0.23.26"
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"net",
"time",
"sync",
] }
tokio-rustls = "0.26.2"
webpki-roots = "0.26.10"
# CLI / UX
clap = { version = "4", features = ["derive"] }
indicatif = "0.17.11"
console = "0.15.11"
# Data & error handling
anyhow = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
# Security / Parsing
x509-parser = "0.17.0"
regex = { version = "1.10", default-features = false, features = [
"perf",
"std",
] }
whois-rust = { version = "1.6.0", features = ["tokio"] }
icann-rdap-common = "0.0.22"
icann-rdap-client = "0.0.22"
hickory-resolver = { version = "0.25.1", default-features = false, features = [
"tokio",
"system-config",
] }
# Misc / Benches
regex-automata = { version = "0.4", optional = true }
hickory-proto = "0.25"
chrono = "0.4.41"
confy = "0.6"
memchr = "2.7"
futures = "0.3"