From 24d5eeb701f89fe7171a44c51c40ddbe003591df Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Thu, 9 Sep 2021 18:28:16 -0700 Subject: [PATCH] add tokio runtime feature to Cargo.toml Needed by 62f6949. The normal tests didn't catch this because runtime is a dev-dependency. The fuzz tests caught it by accident on CI: https://github.com/scottlamb/retina/actions/runs/1219451203 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6c2111e..8fa2e45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ sdp-types = "0.1.3" smallvec = { version = "1.6.1", features = ["union"] } thiserror = "1.0.25" time = "0.1.43" -tokio = { version = "1.5.0", features = ["macros", "net", "time"] } +tokio = { version = "1.5.0", features = ["macros", "net", "runtime", "time"] } tokio-util = { version = "0.6.6", features = ["codec"] } url = "2.2.1"