mirror of
https://github.com/edu4rdshl/rusolver.git
synced 2026-07-17 23:24:55 +00:00
This refactor is aimed to provide better readability for future maintenance, at the same time that provides several performance improvements reducing the number of calls that we do to resolvers.
24 lines
664 B
TOML
24 lines
664 B
TOML
[package]
|
|
name = "rusolver"
|
|
version = "0.10.0"
|
|
authors = ["Eduard Tolosa <edu4rdshl@protonmail.com>"]
|
|
edition = "2021"
|
|
description = "Fast DNS resolver written in Rust."
|
|
repository = "https://github.com/edu4rdshl/rusolver"
|
|
license = "GPL-3.0-or-later"
|
|
keywords = ["dns-resolution", "dns-resolver"]
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.47.0", features = ["full"] }
|
|
futures = "0.3.31"
|
|
hickory-resolver = "0.25.2"
|
|
clap = { version = "4.5.41", features = ["derive"] }
|
|
rand = "0.9.2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|