forked from cloudflare/odoh-client-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (30 loc) · 929 Bytes
/
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
[package]
name = "odoh-client-rs-akamai"
version = "0.2.2"
authors = [ "Alex Schultz <aschultz@akamai.com>" ]
edition = "2018"
license = "BSD-2-Clause"
description = "Rust client for Oblivious DNS over HTTPS (ODoH) protocol draft-03. Modifed for the recursive-dns team at Akamai."
repository = "https://github.com/derschultz/odoh-client-rs-akamai/"
keywords = [ "odoh", "protocols", "dns", "doh", "privacy" ]
categories = [ "network-programming", "cryptography" ]
[dependencies]
anyhow = "1"
clap = "2.33"
futures = "0.3"
hex = "0.4"
lazy_static = "1.4"
odoh-rs = "=0.1.11"
rand = "0.7"
regex = "1"
reqwest = { version = "0.11.4", features = [ "cookies", "rustls-tls" ] }
serde = { version = "1.0", features = [ "derive" ] }
tokio = { version = "1", features = [ "full" ] }
toml = "0.5"
trust-dns-client = "0.20.1"
trust-dns-proto = "0.20.1"
url = "2.2"
serde_json = "1.0"
base64 = "0.13.0"
[dev-dependencies]
assert_cmd = "1"