-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.61 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 loc) · 1.61 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
[package]
name = "blastdns"
version = "2.0.0"
edition = "2024"
description = "Async DNS lookup library for bulk/parallel DNS resolution"
license = "AGPL-3.0"
repository = "https://github.com/blacklanternsecurity/blastdns"
authors = ["TheTechromancer <thetechromancer@protonmail.com>"]
keywords = ["dns", "async", "resolver", "networking", "osint"]
categories = ["network-programming", "asynchronous"]
[lib]
crate-type = ["rlib", "cdylib"]
[features]
default = []
python = ["dep:pyo3", "dep:pyo3-async-runtimes", "pyo3/extension-module"]
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.5.60", features = ["derive"] }
crossfire = "2.1.7"
futures = "0.3.31"
hickory-proto = { version = "0.25.2", features = ["serde", "dnssec-aws-lc-rs", "text-parsing", "tokio"] }
hickory-client = { version = "0.25.2", features = ["serde", "dnssec-aws-lc-rs"] }
hickory-resolver = { version = "0.25.2", default-features = false, features = ["system-config"] }
libc = "0.2"
lru = "0.18"
regex = "1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["macros", "rt", "rt-multi-thread", "time", "net", "sync", "fs", "io-std"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
pyo3 = { version = "0.27", features = ["serde"], optional = true }
pyo3-async-runtimes = { version = "0.27", features = ["attributes", "tokio-runtime"], optional = true }
[dev-dependencies]
pyo3 = { version = "0.27", features = ["auto-initialize"] }
pyo3-async-runtimes = { version = "0.27", features = ["attributes", "tokio-runtime"] }
rand = "0.9.2"