chore(deps): locking deps and fix end user build fail

This commit is contained in:
oluceps 2025-02-23 15:11:08 +08:00
parent 62f0278c1a
commit 14f831c02b
No known key found for this signature in database
5 changed files with 1140 additions and 18 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
/target /target
Cargo.lock

1123
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -16,10 +16,10 @@ benchmark = []
[dependencies] [dependencies]
bytes = "1" bytes = "1"
pnet = "0" pnet = "0.35.0"
tokio = { version = "1", features = ["full"] } tokio = { version = "1.43.0", features = ["full"] }
rand = { version = "0", features = ["small_rng"] } rand = { version = "0.9.0", features = ["small_rng"] }
log = "0" log = "0.4.26"
internet-checksum = "0" internet-checksum = "0.2.1"
tokio-tun = "0" tokio-tun = "0.13.2"
flume = "0" flume = "0.11.1"

View File

@ -402,8 +402,8 @@ impl Stack {
/// Connects to the remote end. `None` returned means /// Connects to the remote end. `None` returned means
/// the connection attempt failed. /// the connection attempt failed.
pub async fn connect(&mut self, addr: SocketAddr) -> Option<Socket> { pub async fn connect(&mut self, addr: SocketAddr) -> Option<Socket> {
let mut rng = SmallRng::from_entropy(); let mut rng = SmallRng::from_os_rng();
for local_port in rng.gen_range(32768..=60999)..=60999 { for local_port in rng.random_range(32768..=60999)..=60999 {
let local_addr = SocketAddr::new( let local_addr = SocketAddr::new(
if addr.is_ipv4() { if addr.is_ipv4() {
IpAddr::V4(self.local_ip) IpAddr::V4(self.local_ip)

View File

@ -12,13 +12,13 @@ Layer 3 & Layer 4 (NAPT) firewalls/NATs.
""" """
[dependencies] [dependencies]
clap = { version = "4", features = ["cargo"] } clap = { version = "4", features = ["cargo"] }
socket2 = { version = "0", features = ["all"] } socket2 = { version = "0.5.8", features = ["all"] }
fake-tcp = { path = "../fake-tcp", version = "0" } fake-tcp = { path = "../fake-tcp", version = "0" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
tokio-util = "0" tokio-util = "0.7.13"
log = "0" log = "0.4.26"
pretty_env_logger = "0" pretty_env_logger = "0.5.0"
tokio-tun = "0" tokio-tun = "0.13.2"
num_cpus = "1" num_cpus = "1.16.0"
neli = "0" neli = "0.6.5"
nix = { version = "0", features = ["net"] } nix = { version = "0.29.0", features = ["net"] }