1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 05:12:40 +03:00

deps: socket2 -> 0.5

This commit is contained in:
Wez Furlong 2023-02-26 22:33:28 -07:00
parent 6878ec3a92
commit 0ac1cbc47c
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 15 additions and 5 deletions

18
Cargo.lock generated
View File

@ -167,7 +167,7 @@ dependencies = [
"parking",
"polling",
"slab",
"socket2",
"socket2 0.4.7",
"waker-fn",
"windows-sys 0.42.0",
]
@ -2146,7 +2146,7 @@ dependencies = [
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"socket2 0.4.7",
"tokio",
"tower-service",
"tracing",
@ -4665,6 +4665,16 @@ dependencies = [
"winapi",
]
[[package]]
name = "socket2"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc8d618c6641ae355025c449427f9e96b98abf99a772be3cef6708d15c77147a"
dependencies = [
"libc",
"windows-sys 0.45.0",
]
[[package]]
name = "spa"
version = "0.3.0"
@ -5188,7 +5198,7 @@ dependencies = [
"mio",
"num_cpus",
"pin-project-lite",
"socket2",
"socket2 0.4.7",
"tokio-macros",
"windows-sys 0.42.0",
]
@ -6063,7 +6073,7 @@ dependencies = [
"shell-words",
"smol",
"smol-potat",
"socket2",
"socket2 0.5.1",
"ssh2",
"termwiz",
"thiserror",

View File

@ -33,7 +33,7 @@ ssh2 = {version="0.9.3", features=["openssl-on-win32"], optional = true}
libssh-rs = {version="0.1.5", features=["vendored"], git="https://github.com/wez/libssh-rs.git", optional = true}
#libssh-rs = {path="../../libssh-rs/libssh-rs", features=["vendored"], optional = true}
thiserror = "1.0"
socket2 = "0.4"
socket2 = "0.5"
# Not used directly, but is used to centralize the openssl vendor feature selection
async_ossl = { path = "../async_ossl" }