summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-01-03 09:24:42 -0500
committerJesse Luehrs <doy@tozt.net>2022-01-03 09:24:42 -0500
commit39f1b8bec3891b3fcc7f60aea86e2ab2f8c3ea8a (patch)
tree876a55e466ff9a276833016093a74e9b9dea1edc /Cargo.lock
parent3f98fd297b52fa2211363204283360d52a618e45 (diff)
downloadnbsh-39f1b8bec3891b3fcc7f60aea86e2ab2f8c3ea8a.tar.gz
nbsh-39f1b8bec3891b3fcc7f60aea86e2ab2f8c3ea8a.zip
use real serialization
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 776304a..90cc3c9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -155,6 +155,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
+name = "bincode"
+version = "1.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
+dependencies = [
+ "serde",
+]
+
+[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -493,6 +502,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"async-std",
+ "bincode",
"blocking",
"futures-lite",
"futures-util",
@@ -503,6 +513,7 @@ dependencies = [
"pest",
"pest_derive",
"pty-process",
+ "serde",
"signal-hook",
"signal-hook-async-std",
"terminal_size",
@@ -652,6 +663,26 @@ dependencies = [
]
[[package]]
+name = "serde"
+version = "1.0.133"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.133"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"