summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-07-18 09:25:22 +0200
committerMatthias Beyer <mail@beyermatthias.de>2023-01-02 11:50:03 +0100
commit906a8593049701504fabb4c8632abf3780a81902 (patch)
tree21e73a91926d93dac1460d0b1b136bfd6e088fa8 /Cargo.lock
parentea793085aa27cdc3af4fe48bcc0e3f05d9bf6bfe (diff)
Make test executable run async with tokio
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5966424..836f61a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -588,6 +588,7 @@ version = "0.1.0"
dependencies = [
"clap 3.2.23",
"miette",
+ "tokio",
]
[[package]]
@@ -840,6 +841,15 @@ dependencies = [
]
[[package]]
+name = "signal-hook-registry"
+version = "1.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
+dependencies = [
+ "libc",
+]
+
+[[package]]
name = "slab"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1017,6 +1027,7 @@ dependencies = [
"mio",
"num_cpus",
"pin-project-lite",
+ "signal-hook-registry",
"socket2",
"tokio-macros",
"windows-sys",