summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2021-12-23 00:00:43 +0100
committerGitHub <noreply@github.com>2021-12-23 00:00:43 +0100
commit1678690c362597422dad682535ee0584d78e79ee (patch)
treea61ce5c63c4342b0d8e8a31ba8b56df2646d65a2 /Cargo.lock
parent9391ba1098177c9463392eca8e3a725b564d90dc (diff)
feat(runtime): add op_network_interfaces (#12964)
Add an op to list the network interfaces on the system. Prep work for #8137 and `os.networkInterfaces()` Node compat in std. Refs denoland/deno_std#1436.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 771d55107..d2f28125c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -935,6 +935,7 @@ dependencies = [
"hyper",
"libc",
"log",
+ "netif",
"nix",
"notify",
"once_cell",
@@ -2259,6 +2260,16 @@ dependencies = [
]
[[package]]
+name = "netif"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2c9e642845c332c335e3125759b10145a972c1f413cb48cd6d7b96e81821f281"
+dependencies = [
+ "libc",
+ "winapi 0.3.9",
+]
+
+[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"