blastdns 1.2.0

Async DNS lookup library for bulk/parallel DNS resolution
Documentation
[build-system]
requires = ["maturin>=1.10,<2"]
build-backend = "maturin"

[project]
name = "blastdns"
version = "1.2.0"
description = "Async Python interface on top of the BlastDNS resolver"
license = "GPL-3.0"
repository = "https://github.com/blacklanternsecurity/blastdns"
homepage = "https://github.com/blacklanternsecurity/blastdns"
authors = [{name = "TheTechromancer", email = "thetechromancer@protonmail.com"}]
keywords = ["dns", "async", "resolver", "networking", "osint"]
categories = ["network-programming", "asynchronous"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
    "orjson>=3.11.4",
    "pydantic>=2.12.4",
]

[dependency-groups]
dev = [
    "pytest>=8.4.2",
    "pytest-asyncio>=1.2.0",
    "maturin>=1.10",
    "dnspython>=2.7.0",
    "tabulate>=0.9.0",
    "ruff>=0.14.8",
    "uvloop>=0.21.0",
]

[tool.ruff]
line-length = 119
lint.select = ["E", "F"]
lint.ignore = ["E402", "E711", "E713", "E721", "E741", "F403", "F405", "E501"]

[tool.maturin]
features = ["python"]
module-name = "blastdns._native"