mirror of
https://github.com/dndx/phantun.git
synced 2025-04-04 11:09:29 +08:00
chore(deps): locking deps and fix end user build fail
This commit is contained in:
parent
62f0278c1a
commit
14f831c02b
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
/target
|
/target
|
||||||
Cargo.lock
|
|
||||||
|
1123
Cargo.lock
generated
Normal file
1123
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -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"
|
||||||
|
@ -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)
|
||||||
|
@ -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"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user