blastdns 1.0.1

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.0.1"
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",
]

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