mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 21:47:39 +03:00
Reexport tokio
This commit is contained in:
parent
b4d4eaae50
commit
39124df9fc
4 changed files with 8 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "doh-proxy"
|
name = "doh-proxy"
|
||||||
version = "0.3.7"
|
version = "0.3.8"
|
||||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||||
description = "A DNS-over-HTTPS (DoH) proxy"
|
description = "A DNS-over-HTTPS (DoH) proxy"
|
||||||
keywords = ["dns","https","doh","proxy"]
|
keywords = ["dns","https","doh","proxy"]
|
||||||
|
@ -16,10 +16,9 @@ default = ["tls"]
|
||||||
tls = ["libdoh/tls"]
|
tls = ["libdoh/tls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libdoh = { path = "src/libdoh", version = "0.3.7", default-features = false }
|
libdoh = { path = "src/libdoh", version = "0.3.8", default-features = false }
|
||||||
clap = "2.33.3"
|
clap = "2.33.3"
|
||||||
jemallocator = "0.3.2"
|
jemallocator = "0.3.2"
|
||||||
tokio = { version = "1.2.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] }
|
|
||||||
|
|
||||||
[package.metadata.deb]
|
[package.metadata.deb]
|
||||||
extended-description = """\
|
extended-description = """\
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "libdoh"
|
name = "libdoh"
|
||||||
version = "0.3.7"
|
version = "0.3.8"
|
||||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||||
description = "DoH library for the rust-doh app"
|
description = "DoH library for the rust-doh app"
|
||||||
keywords = ["dns","https","doh","proxy"]
|
keywords = ["dns","https","doh","proxy"]
|
||||||
|
|
|
@ -26,6 +26,10 @@ use tokio::net::{TcpListener, UdpSocket};
|
||||||
use tokio::runtime;
|
use tokio::runtime;
|
||||||
use tokio::sync::mpsc;
|
use tokio::sync::mpsc;
|
||||||
|
|
||||||
|
pub mod reexports {
|
||||||
|
pub use tokio;
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct DoH {
|
pub struct DoH {
|
||||||
pub globals: Arc<Globals>,
|
pub globals: Arc<Globals>,
|
||||||
|
|
|
@ -13,6 +13,7 @@ use libdoh::*;
|
||||||
use crate::config::*;
|
use crate::config::*;
|
||||||
use crate::constants::*;
|
use crate::constants::*;
|
||||||
|
|
||||||
|
use libdoh::reexports::tokio;
|
||||||
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
|
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue