summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-31 03:36:33 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-31 03:36:33 -0500
commit1c2486a55c21b323f73c72c0128def0fcac061eb (patch)
treed290d26aa6dc6462aee08f8620159980b43f80c3 /Cargo.lock
parentd82cd70272ea300fcfd98110f674580b835ffab2 (diff)
downloadnbsh-1c2486a55c21b323f73c72c0128def0fcac061eb.tar.gz
nbsh-1c2486a55c21b323f73c72c0128def0fcac061eb.zip
basic implementation of pipes
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock36
1 files changed, 34 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 88a9329..24c3b03 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -301,9 +301,9 @@ dependencies = [
[[package]]
name = "futures-core"
-version = "0.3.17"
+version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
+checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
[[package]]
name = "futures-io"
@@ -327,6 +327,37 @@ dependencies = [
]
[[package]]
+name = "futures-macro"
+version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "futures-task"
+version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
+
+[[package]]
+name = "futures-util"
+version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
+dependencies = [
+ "futures-core",
+ "futures-macro",
+ "futures-task",
+ "pin-project-lite",
+ "pin-utils",
+ "slab",
+]
+
+[[package]]
name = "generic-array"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -463,6 +494,7 @@ dependencies = [
"anyhow",
"async-std",
"futures-lite",
+ "futures-util",
"hostname",
"libc",
"nix",