From 1b6f3b3f14bc592b134d1a84de423be86dd3b5a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20K=C3=B6hler?= Date: Thu, 22 Aug 2024 12:23:27 +0200 Subject: [PATCH 1/2] Upgrade futures-lite --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e51c3f7..dfb8a94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,14 +21,14 @@ enumset = "1" heapless = "0.8" log = { version = "0.4", default-features = false } futures-io = { version = "0.3", default-features = false, optional = true, features = ["std"] } -futures-lite = { version = "1", default-features = false, optional = true } +futures-lite = { version = "2", default-features = false, optional = true } embassy-time-driver = { version = "0.1", optional = true } embassy-time-queue-driver = { version = "0.1", optional = true } embassy-time = { version = "0.3", optional = true } [dev-dependencies] futures-io = "0.3" -futures-lite = "1" +futures-lite = "2" embassy-time = { version = "0.3", features = ["std", "generic-queue"] } async-channel = "2" env_logger = "0.10" From b117602a6465f820542ef258fb94131f8852e3f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20K=C3=B6hler?= Date: Thu, 22 Aug 2024 12:36:30 +0200 Subject: [PATCH 2/2] Update version to 0.2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dfb8a94..a21b091 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-io-mini" -version = "0.1.0" +version = "0.2.0" authors = ["Stjepan Glavina ", "Ivan Markov"] edition = "2021" rust-version = "1.77"