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
This commit is contained in:
Scott Lamb 2021-09-09 18:28:16 -07:00
parent 62f6949873
commit 24d5eeb701

View File

@ -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"