summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-01-03 01:19:02 -0500
committerJesse Luehrs <doy@tozt.net>2022-01-03 01:46:28 -0500
commit234d71241399ae40d498d7953e9516f5cc5a471c (patch)
tree12ff8e2e983a7b4ffdf082780ab3cd473dbf86ac /Cargo.lock
parent0115a566afa763c9732e03765d50a2ace4008d18 (diff)
downloadnbsh-234d71241399ae40d498d7953e9516f5cc5a471c.tar.gz
nbsh-234d71241399ae40d498d7953e9516f5cc5a471c.zip
start adding back builtin support
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock12
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 63a8de5..27fd957 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -109,6 +109,17 @@ dependencies = [
]
[[package]]
+name = "async-recursion"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "async-std"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -492,6 +503,7 @@ name = "nbsh"
version = "0.1.0"
dependencies = [
"anyhow",
+ "async-recursion",
"async-std",
"futures-lite",
"futures-util",