From 9332aee2867862a9808bfa4e744e7e68af20f080 Mon Sep 17 00:00:00 2001 From: programingjd Date: Sun, 2 Jun 2024 13:40:26 +0200 Subject: [PATCH] Update tokio dependency. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0f1a728..fd8bc8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "read_until_slice" -version = "0.1.4" +version = "0.1.5" edition = "2021" authors = ["Jerome David "] categories = ["asynchronous"] @@ -12,7 +12,7 @@ include = [ "Cargo.toml", "src", "tests", "examples", "LICENSE", "README.md" ] [dependencies.tokio] -version = "1.37" +version = "1.38" default-features = false features = ["io-util"] @@ -22,7 +22,7 @@ default-features = false features = [] [dev-dependencies.tokio] -version = "1.37" +version = "1.38" default-features = false features = ["macros", "rt", "net"] [dev-dependencies.tokio-test]