summaryrefslogtreecommitdiffhomepage
path: root/mullvad-encrypted-dns-proxy/Cargo.toml
blob: 1326337a66a18dd7889c013000a9a090812f6b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "mullvad-encrypted-dns-proxy"
description = "A port forwarding proxy that retrieves its configuration from a AAAA record over DoH"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = [ "macros" ] }
log = { workspace = true }
hickory-resolver = { workspace = true, features = [ "dns-over-https-rustls" ]}
serde = { workspace = true, features = ["derive"] }
webpki-roots = "0.25.0"
rustls = "0.21"

[dev-dependencies]
env_logger = { workspace = true }