From 1e6e84e71c385ebea301dbaa509e57aa2e1e1e40 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Fri, 31 May 2024 12:42:19 -0700 Subject: [PATCH] set up the macros feature for async dispatcher, for tests Co-Authored-By: Max --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8cd4a22..dfe71aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,13 +34,17 @@ num-traits = "0.2" dashmap = "5" crossbeam-queue = "0.3" uuid = { version = "1", features = ["v4"] } -regex = { version = "1", default-features = false, features = ["std", "unicode-perl"] } +regex = { version = "1", default-features = false, features = [ + "std", + "unicode-perl", +] } once_cell = "1" log = "0.4" asynchronous-codec = "0.7" async-std = { version = "1", features = ["attributes"], optional = true } [dev-dependencies] +async-dispatcher = { version = "0.1", features = ["macros"] } chrono = "0.4" criterion = "0.5" pretty_env_logger = "0.5"