summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-04-21 14:03:17 +0200
committerJustus Winter <justus@sequoia-pgp.org>2022-04-21 14:13:44 +0200
commitaec7c3955abb35ad32f3d438ba34ea4e7c2cf0a6 (patch)
treed57675220eb2623b491f4f5e231c36664adc9f9c
parenta23eea3df204e29d6effe37a40b8bc560339ed78 (diff)
ipc: Fix running tests.
- For tests, we need `tokio::test` which requires the `macros` feature. Enable it explicitly. Fixes running `cargo test -p sequoia-ipc` for me.
-rw-r--r--ipc/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 2dc75eec..a24a6840 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -49,6 +49,7 @@ lalrpop = ">=0.17"
[dev-dependencies]
clap = "2.33"
quickcheck = { version = "1", default-features = false }
+tokio = { version = "1", features = [ "macros" ] }
[lib]
bench = false