mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-04-19 21:39:09 +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]
|
||||
name = "tun2proxy"
|
||||
version = "0.2.16"
|
||||
version = "0.2.17"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
repository = "https://github.com/blechschmidt/tun2proxy"
|
||||
|
@ -29,11 +29,11 @@ log = { version = "0.4", features = ["std"] }
|
|||
percent-encoding = "2"
|
||||
socks5-impl = { version = "0.5" }
|
||||
thiserror = "1.0"
|
||||
tokio = { version = "1.36", features = ["full"] }
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
tokio-util = "0.7"
|
||||
tproxy-config = { version = "4.0", features = ["log"] }
|
||||
tproxy-config = { version = "4", features = ["log"] }
|
||||
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 }
|
||||
unicase = "2.7"
|
||||
url = "2.5"
|
||||
|
|
|
@ -147,6 +147,7 @@ pub async fn run<D>(device: D, mtu: u16, args: Args, shutdown_token: Cancellatio
|
|||
where
|
||||
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);
|
||||
|
||||
let server_addr = args.proxy.addr;
|
||||
|
|
Loading…
Add table
Reference in a new issue