mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-04-20 13:59:10 +00:00
Bump version 0.2.17
This commit is contained in:
parent
09994d43cc
commit
d5d847fa92
2 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tun2proxy"
|
name = "tun2proxy"
|
||||||
version = "0.2.16"
|
version = "0.2.17"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/blechschmidt/tun2proxy"
|
repository = "https://github.com/blechschmidt/tun2proxy"
|
||||||
|
@ -29,11 +29,11 @@ log = { version = "0.4", features = ["std"] }
|
||||||
percent-encoding = "2"
|
percent-encoding = "2"
|
||||||
socks5-impl = { version = "0.5" }
|
socks5-impl = { version = "0.5" }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
tokio = { version = "1.36", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
tokio-util = "0.7"
|
tokio-util = "0.7"
|
||||||
tproxy-config = { version = "4.0", features = ["log"] }
|
tproxy-config = { version = "4", features = ["log"] }
|
||||||
trust-dns-proto = "0.23"
|
trust-dns-proto = "0.23"
|
||||||
tun2 = { version = "1.2", features = ["async"] }
|
tun2 = { version = "1.3", features = ["async"] }
|
||||||
udp-stream = { version = "0.0", default-features = false }
|
udp-stream = { version = "0.0", default-features = false }
|
||||||
unicase = "2.7"
|
unicase = "2.7"
|
||||||
url = "2.5"
|
url = "2.5"
|
||||||
|
|
|
@ -147,6 +147,7 @@ pub async fn run<D>(device: D, mtu: u16, args: Args, shutdown_token: Cancellatio
|
||||||
where
|
where
|
||||||
D: AsyncRead + AsyncWrite + Unpin + Send + 'static,
|
D: AsyncRead + AsyncWrite + Unpin + Send + 'static,
|
||||||
{
|
{
|
||||||
|
log::info!("{} {} starting...", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
|
||||||
log::info!("Proxy {} server: {}", args.proxy.proxy_type, args.proxy.addr);
|
log::info!("Proxy {} server: {}", args.proxy.proxy_type, args.proxy.addr);
|
||||||
|
|
||||||
let server_addr = args.proxy.addr;
|
let server_addr = args.proxy.addr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue