mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 21:17:36 +03:00
32 lines
787 B
TOML
32 lines
787 B
TOML
[package]
|
|
name = "doh-proxy"
|
|
version = "0.1.15"
|
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
|
description = "A DNS-over-HTTPS (DoH) proxy"
|
|
keywords = ["dns","https","doh","proxy"]
|
|
license = "MIT"
|
|
homepage = "https://github.com/jedisct1/rust-doh"
|
|
repository = "https://github.com/jedisct1/rust-doh"
|
|
categories = ["asynchronous", "network-programming","command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
tls = ["native-tls", "tokio-tls"]
|
|
|
|
[dependencies]
|
|
base64 = "0.10"
|
|
clap = "2"
|
|
futures = "0.1.27"
|
|
hyper = "0.12.29"
|
|
jemallocator = "0"
|
|
native-tls = { version = "0.2.3", optional = true }
|
|
tokio = "0.1.20"
|
|
tokio-current-thread = "0.1.6"
|
|
tokio-timer = "0.2.11"
|
|
tokio-tls = { version = "0.2.1", optional = true }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
opt-level = 3
|