[package]
edition = "2021"
name = "vacant"
version = "0.3.2"
authors = ["David Poblador i Garcia <david@poblador.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast domain availability checker. Asks authoritative TLD nameservers directly instead of WHOIS."
homepage = "https://github.com/alltuner/vacant"
readme = "README.md"
keywords = [
"domain",
"availability",
"dns",
"registrar",
"tld",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/alltuner/vacant"
[lib]
name = "vacant"
path = "src/lib.rs"
[[bin]]
name = "vacant"
path = "src/main.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.futures]
version = "0.3"
[dependencies.hickory-proto]
version = "0.26"
[dependencies.hickory-resolver]
version = "0.26"
features = ["tokio"]
[dependencies.rand]
version = "0.10"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"http2",
]
default-features = false
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"time",
"sync",
"macros",
]
[dependencies.toml]
version = "1.0"
[dev-dependencies.proptest]
version = "1"
[profile.release]
lto = "thin"