Bump deps
This commit is contained in:
parent
94d9a14c81
commit
0aabcd16ad
2 changed files with 268 additions and 236 deletions
464
Cargo.lock
generated
464
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
40
Cargo.toml
40
Cargo.toml
|
@ -6,45 +6,45 @@ repository = "https://github.com/erebe/wstunnel.git"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ahash = { version = "0.8.7", features = [] }
|
ahash = { version = "0.8.11", features = [] }
|
||||||
anyhow = "1.0.79"
|
anyhow = "1.0.81"
|
||||||
async-trait = "0.1.77"
|
async-trait = "0.1.79"
|
||||||
base64 = "0.21.6"
|
base64 = "0.22.0"
|
||||||
|
|
||||||
bb8 = { version = "0.8", features = [] }
|
bb8 = { version = "0.8", features = [] }
|
||||||
bytes = { version = "1.5.0", features = [] }
|
bytes = { version = "1.6.0", features = [] }
|
||||||
clap = { version = "4.4.14", features = ["derive", "env"] }
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
||||||
fast-socks5 = { git = "https://github.com/erebe/fast-socks5.git", branch = "master", features = [] }
|
fast-socks5 = { version = "0.9.6", features = [] }
|
||||||
fastwebsockets = { git = "https://github.com/erebe/fastwebsockets.git", branch = "main", features = ["upgrade", "simd", "unstable-split"] }
|
fastwebsockets = { version = "0.7.1", features = ["upgrade", "simd", "unstable-split"] }
|
||||||
futures-util = { version = "0.3.30" }
|
futures-util = { version = "0.3.30" }
|
||||||
hickory-resolver = { version = "0.24.0", features = ["tokio", "dns-over-https-rustls", "dns-over-rustls"] }
|
hickory-resolver = { version = "0.24.0", features = ["tokio", "dns-over-https-rustls", "dns-over-rustls"] }
|
||||||
ppp = { version = "2.2.0", features = [] }
|
ppp = { version = "2.2.0", features = [] }
|
||||||
|
|
||||||
hyper = { version = "1.1.0", features = ["client", "http1", "http2"] }
|
hyper = { version = "1.2.0", features = ["client", "http1", "http2"] }
|
||||||
hyper-util = { version = "0.1.2", features = ["tokio", "server", "server-auto"] }
|
hyper-util = { version = "0.1.3", features = ["tokio", "server", "server-auto"] }
|
||||||
http-body-util = { version = "0.1.0" }
|
http-body-util = { version = "0.1.1" }
|
||||||
jsonwebtoken = { version = "9.2.0", default-features = false }
|
jsonwebtoken = { version = "9.3.0", default-features = false }
|
||||||
log = "0.4.20"
|
log = "0.4.21"
|
||||||
nix = { version = "0.27.1", features = ["socket", "net", "uio"] }
|
nix = { version = "0.28.0", features = ["socket", "net", "uio"] }
|
||||||
once_cell = { version = "1.19.0", features = [] }
|
once_cell = { version = "1.19.0", features = [] }
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0.12.1"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
notify = { version = "6.1.1", features = [] }
|
notify = { version = "6.1.1", features = [] }
|
||||||
|
|
||||||
rustls-native-certs = { version = "0.7.0", features = [] }
|
rustls-native-certs = { version = "0.7.0", features = [] }
|
||||||
rustls-pemfile = { version = "2.0.0", features = [] }
|
rustls-pemfile = { version = "2.1.1", features = [] }
|
||||||
scopeguard = "1.2.0"
|
scopeguard = "1.2.0"
|
||||||
serde = { version = "1.0.195", features = ["derive"] }
|
serde = { version = "1.0.197", features = ["derive"] }
|
||||||
socket2 = { version = "0.5.5", features = [] }
|
socket2 = { version = "0.5.6", features = [] }
|
||||||
tokio = { version = "1.35.1", features = ["full"] }
|
tokio = { version = "1.36.0", features = ["full"] }
|
||||||
tokio-rustls = { version = "0.24.1", features = ["tls12", "dangerous_configuration", "early-data"] }
|
tokio-rustls = { version = "0.24.1", features = ["tls12", "dangerous_configuration", "early-data"] }
|
||||||
tokio-stream = { version = "0.1.14", features = ["net"] }
|
tokio-stream = { version = "0.1.15", features = ["net"] }
|
||||||
|
|
||||||
tracing = { version = "0.1.40", features = ["log"] }
|
tracing = { version = "0.1.40", features = ["log"] }
|
||||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "local-time"] }
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "local-time"] }
|
||||||
url = "2.5.0"
|
url = "2.5.0"
|
||||||
urlencoding = "2.1.3"
|
urlencoding = "2.1.3"
|
||||||
uuid = { version = "1.6.1", features = ["v7", "serde"] }
|
uuid = { version = "1.8.0", features = ["v7", "serde"] }
|
||||||
|
|
||||||
[target.'cfg(not(target_family = "unix"))'.dependencies]
|
[target.'cfg(not(target_family = "unix"))'.dependencies]
|
||||||
crossterm = { version = "0.27.0" }
|
crossterm = { version = "0.27.0" }
|
||||||
|
|
Loading…
Reference in a new issue