-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.23 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "dns-ptr-resolver"
version = "1.2.0"
authors = ["William Desportes <[email protected]>"]
edition = "2021"
rust-version = "1.72.0" # MSRV
description = "A program to resolve DNS IPs to PTRs"
homepage = "https://github.com/wdes/dns-ptr-resolver#readme"
documentation = "https://docs.rs/dns-ptr-resolver"
repository = "https://github.com/wdes/dns-ptr-resolver"
readme = "README.md"
keywords = ["dns", "ptr", "resolver"]
categories = ["command-line-utilities"]
license = "MPL-2.0"
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/LICENSE",
]
[badges]
github = { repository = "dns-ptr-resolver", branch = "master" }
is-it-maintained-issue-resolution = { repository = "dns-ptr-resolver" }
is-it-maintained-open-issues = { repository = "dns-ptr-resolver" }
maintenance = { status = "passively-maintained" }
[lib]
name = "dns_ptr_resolver"
path = "src/lib.rs"
[[bin]]
name = "dns-ptr-resolver"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rayon = "1.10.0"
hickory-resolver = { version = "0.24.1", default-features = false, features = ["tokio-runtime", "dns-over-h3", "dns-over-https", "dns-over-quic"]}
rustdns = "0.4.0"
weighted-rs = "0.1.3"