-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) 路 777 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) 路 777 Bytes
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
[package]
name = "dnsresolver"
version = "0.1.6"
edition = "2021"
authors = ["zoid", "<krypt0mux@gmail.com>"]
description = "A really fast dns resolver."
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.0"
itertools = "0.11.0"
governor = "0.6.0"
futures = "0.3.26"
futures-util = "0.3.26"
openssl = { version = "0.10.45", features = ["vendored"] }
tokio = { version = "1.28.2", features = ["full"] }
spmc = "0.3.0"
regex = "1.10.2"
hickory-resolver = { version = "*", features = ["dns-over-rustls"] }
reqwest = { version = "0.11.14", features = ["native-tls", "blocking"] }
async-std = "1.12.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
distance = "0.4.0"