mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-01 20:27:34 +03:00
40 lines
1 KiB
TOML
40 lines
1 KiB
TOML
[package]
|
|
name = "doh-proxy"
|
|
version = "0.2.0"
|
|
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"
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = []
|
|
tls = ["libdoh/tls"]
|
|
|
|
[dependencies]
|
|
libdoh = { path = "src/libdoh" }
|
|
clap = "2"
|
|
jemallocator = "0"
|
|
tokio = { version = "0.2", features = ["rt-threaded", "time", "tcp", "udp", "stream"] }
|
|
|
|
[package.metadata.deb]
|
|
extended-description = """\
|
|
A fast and secure DoH (DNS-over-HTTPS) server written in Rust."""
|
|
assets = [
|
|
["target/release/doh-proxy", "usr/bin/", "755"],
|
|
["README.md", "usr/share/doc/doh-proxy/README.md", "644"]
|
|
]
|
|
section = "network"
|
|
depends = "$auto"
|
|
priority = "optional"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
lto = "fat"
|
|
opt-level = 3
|
|
panic = "abort"
|