0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00

chore(runtime): upgrade netif crate (#15867)

v0.1.3 contains code that will stop working with newer versions of
libstd because the layout of some std::net types changed.

Refs: https://github.com/bnoordhuis/netif/pull/10
This commit is contained in:
Ben Noordhuis 2022-09-19 20:12:03 +02:00 committed by GitHub
parent 3864961364
commit 79aee3668d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -2817,9 +2817,9 @@ dependencies = [
[[package]] [[package]]
name = "netif" name = "netif"
version = "0.1.4" version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a96c14078e0dae0c847c413b31304d5563daeb2494a61ebb01cb66f19b8ba99f" checksum = "d29a01b9f018d6b7b277fef6c79fdbd9bf17bb2d1e298238055cafab49baa5ee"
dependencies = [ dependencies = [
"libc", "libc",
"winapi 0.3.9", "winapi 0.3.9",

View file

@ -75,7 +75,7 @@ hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2",
libc = "0.2.126" libc = "0.2.126"
log = "0.4.16" log = "0.4.16"
lzzzz = '1.0' lzzzz = '1.0'
netif = "0.1.3" netif = "0.1.6"
notify = "5.0" notify = "5.0"
once_cell = "1.10.0" once_cell = "1.10.0"
regex = "1.6.0" regex = "1.6.0"