From e5cd6591688dca7fa54fdf593ffb8bd065ed6ceb Mon Sep 17 00:00:00 2001 From: Vincent Herlemont Date: Wed, 1 Nov 2023 17:58:45 +0100 Subject: [PATCH] refactor!: rename async_tokio feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 369a480a..a073bef6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "struct_db" -version = "0.4.0" +version = "0.4.3" authors = ["Vincent Herlemont "] edition = "2018" description = "Drop-in embedded database" @@ -24,7 +24,7 @@ serde = { version = "1.0", features = ["derive"] } bincode = { version = "2.0.0-rc.3", features = ["serde"] } # Optional tokio support -tokio = { version = "1.29", features = ["sync"], optional = true } +tokio = { version = "1", features = ["sync"], optional = true } [dev-dependencies] assert_fs = "1.0"