summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2020-10-20 19:17:57 +0200
committerAram Drevekenin <aram@poor.dev>2020-10-20 19:17:57 +0200
commitbd5824ce3fe72dc0b48e28776e2c801eff268972 (patch)
treed29ea51d898d950f731fb44f076e0fc3072afb39 /Cargo.lock
parente50e9770fd3014bb88c4f5652cd64411976d88d3 (diff)
feat(ipc): listen to external ipc messages including a basic api
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock18
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index aaaec76b3..f02398328 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -66,6 +66,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
[[package]]
+name = "bincode"
+version = "1.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
+dependencies = [
+ "byteorder",
+ "serde",
+]
+
+[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -92,6 +102,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
[[package]]
+name = "byteorder"
+version = "1.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
+
+[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -391,10 +407,12 @@ name = "mosaic"
version = "0.1.0"
dependencies = [
"async-std",
+ "bincode",
"futures",
"insta",
"libc",
"nix",
+ "serde",
"signal-hook",
"termios",
"unicode-truncate",