mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 21:17:36 +03:00
This keeps the same structure without refactoring anything. However there are several necessary changes: 1. The returned future needs to be Send because hyper requires it. 2. The typed headers were removed from hyper, so use plain code instead. 3. Use the even-lower-level API because it was actually easier.
19 lines
528 B
TOML
19 lines
528 B
TOML
[package]
|
|
name = "doh-proxy"
|
|
version = "0.1.7"
|
|
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"]
|
|
|
|
[dependencies]
|
|
base64 = "0.9"
|
|
clap = "2"
|
|
futures = "0.1"
|
|
hyper = "0.12"
|
|
tokio = "0.1"
|
|
tokio-timer = "0.2"
|
|
clippy = {version = ">=0", optional = true}
|