dns-over-tls-client-proxy/Cargo.toml
2021-05-16 12:42:00 -05:00

29 lines
796 B
TOML

[package]
name = "dns-over-tls-client"
description = "A simple DoT Client Proxy"
version = "0.1.0"
authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/dns-over-tls-client-proxy"
keywords = ["dns", "tls"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-mutex = "1.4.0"
bytes = "1"
log = "0.4"
env_logger = "0.8.0"
futures = "0.3.15"
rand = "0.8"
structopt = "0.3.21"
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-stream = { version = "0.1.6", features = ["net", "io-util"] }
tokio-util = { version = "0.6.7", features = ["codec", "net"] }
ttl_cache = "0.5.1"
webpki-roots = "0.21.0"