mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[package]
|
|
name = "libdoh"
|
|
version = "0.9.9"
|
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
|
description = "DoH and Oblivious DoH library for the rust-doh app"
|
|
keywords = ["dns","https","doh","odoh","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"]
|
|
tls = ["tokio-rustls"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.70"
|
|
arc-swap = "1.6.0"
|
|
base64 = "0.21.0"
|
|
byteorder = "1.4.3"
|
|
bytes = "1.4.0"
|
|
futures = "0.3.28"
|
|
hyper = { version = "0.14.26", default-features = false, features = ["server", "http1", "http2", "stream"] }
|
|
odoh-rs = "1.0.1"
|
|
rand = "0.8.5"
|
|
tokio = { version = "1.27.0", features = ["net", "rt-multi-thread", "time", "sync"] }
|
|
tokio-rustls = { version = "0.23.4", features = ["early-data"], optional = true }
|
|
rustls-pemfile = "1.0.2"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
lto = "fat"
|
|
opt-level = 3
|
|
panic = "abort"
|