mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 01:59:16 +08:00
chore: bump version to v1.23.3
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -3399,7 +3399,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "shadowsocks-rust"
|
||||
version = "1.23.2"
|
||||
version = "1.23.3"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"build-time",
|
||||
@@ -3440,7 +3440,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "shadowsocks-service"
|
||||
version = "1.23.2"
|
||||
version = "1.23.3"
|
||||
dependencies = [
|
||||
"arc-swap",
|
||||
"brotli",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "shadowsocks-rust"
|
||||
version = "1.23.2"
|
||||
version = "1.23.3"
|
||||
authors = ["Shadowsocks Contributors"]
|
||||
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
|
||||
repository = "https://github.com/shadowsocks/shadowsocks-rust"
|
||||
@@ -242,7 +242,7 @@ jemallocator = { version = "0.5", optional = true }
|
||||
snmalloc-rs = { version = "0.3", optional = true }
|
||||
rpmalloc = { version = "0.2", optional = true }
|
||||
|
||||
shadowsocks-service = { version = "1.23.2", path = "./crates/shadowsocks-service" }
|
||||
shadowsocks-service = { version = "1.23.3", path = "./crates/shadowsocks-service" }
|
||||
|
||||
windows-service = { version = "0.8", optional = true }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "shadowsocks-service"
|
||||
version = "1.23.2"
|
||||
version = "1.23.3"
|
||||
authors = ["Shadowsocks Contributors"]
|
||||
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
|
||||
repository = "https://github.com/shadowsocks/shadowsocks-rust"
|
||||
|
||||
@@ -2006,18 +2006,6 @@ impl Config {
|
||||
nsvr.set_timeout(timeout);
|
||||
}
|
||||
|
||||
let mut outbound_bind_addr: Option<IpAddr> = None;
|
||||
|
||||
if let Some(ref bind_addr) = config.outbound_bind_addr {
|
||||
match bind_addr.parse::<IpAddr>() {
|
||||
Ok(b) => outbound_bind_addr = Some(b),
|
||||
Err(..) => {
|
||||
let err = Error::new(ErrorKind::Invalid, "invalid outbound_bind_addr", None);
|
||||
return Err(err);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
nconfig.server.push(ServerInstanceConfig::with_server_config(nsvr));
|
||||
}
|
||||
(None, None, None, Some(_)) if config_type.is_manager() => {
|
||||
@@ -2190,18 +2178,6 @@ impl Config {
|
||||
nsvr.set_weight(weight);
|
||||
}
|
||||
|
||||
let mut outbound_bind_addr: Option<IpAddr> = None;
|
||||
|
||||
if let Some(ref bind_addr) = config.outbound_bind_addr {
|
||||
match bind_addr.parse::<IpAddr>() {
|
||||
Ok(b) => outbound_bind_addr = Some(b),
|
||||
Err(..) => {
|
||||
let err = Error::new(ErrorKind::Invalid, "invalid outbound_bind_addr", None);
|
||||
return Err(err);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let mut server_instance = ServerInstanceConfig::with_server_config(nsvr);
|
||||
|
||||
if let Some(acl_path) = svr.acl {
|
||||
|
||||
Reference in New Issue
Block a user