[package]
edition = "2024"
name = "blastdns"
version = "1.9.1"
authors = ["TheTechromancer <thetechromancer@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async DNS lookup library for bulk/parallel DNS resolution"
readme = "README.md"
keywords = [
"dns",
"async",
"resolver",
"networking",
"osint",
]
categories = [
"network-programming",
"asynchronous",
]
license = "GPL-3.0"
repository = "https://github.com/blacklanternsecurity/blastdns"
[features]
default = []
python = [
"dep:pyo3",
"dep:pyo3-async-runtimes",
"pyo3/extension-module",
]
[lib]
name = "blastdns"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "blastdns"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.crossfire]
version = "2.1.7"
[dependencies.futures]
version = "0.3.31"
[dependencies.hickory-client]
version = "0.25.2"
features = [
"serde",
"dnssec-aws-lc-rs",
]
[dependencies.hickory-proto]
version = "0.25.2"
features = [
"serde",
"dnssec-aws-lc-rs",
"text-parsing",
"tokio",
]
[dependencies.hickory-resolver]
version = "0.25.2"
features = ["system-config"]
default-features = false
[dependencies.libc]
version = "0.2"
[dependencies.lru]
version = "0.16"
[dependencies.pyo3]
version = "0.27"
features = ["serde"]
optional = true
[dependencies.pyo3-async-runtimes]
version = "0.27"
features = [
"attributes",
"tokio-runtime",
]
optional = true
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
"net",
"sync",
"fs",
"io-std",
]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.pyo3]
version = "0.27"
features = ["auto-initialize"]
[dev-dependencies.pyo3-async-runtimes]
version = "0.27"
features = [
"attributes",
"tokio-runtime",
]
[dev-dependencies.rand]
version = "0.9.2"