dns-over-tls-client-proxy/Cargo.toml
2020-05-26 17:25:43 -05:00

27 lines
707 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"
bytes = "0.5"
log = "0.4"
env_logger = "0.7.1"
futures = "0.3.4"
mobc = "0.5.7"
rand = "0.7"
structopt = "0.3.14"
tokio = { version = "0.2.20", features = ["full"] }
tokio-rustls = "0.13.0"
tokio-util = { version = "0.3.1", features = ["codec", "udp"] }
webpki-roots = "0.19.0"