From 84381cb107329422c2d193b8a34e1da90bfdc9eb Mon Sep 17 00:00:00 2001 From: Rafael Bachmann Date: Fri, 27 Oct 2023 23:20:07 +0200 Subject: [PATCH 1/2] Expose mio-serial/serde feature --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 86b2123..6f0cb22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,7 @@ default = [] libudev = ["mio-serial/libudev"] rt = ["tokio/rt-multi-thread"] codec = ["tokio-util/codec", "bytes"] +serde = ["mio-serial/serde"] [dependencies.futures] version = "0.3" From a1dd4360ecdb7c2fec0c84d108be64cd74e90d20 Mon Sep 17 00:00:00 2001 From: Rafael Bachmann Date: Sat, 30 Mar 2024 13:28:37 +0100 Subject: [PATCH 2/2] Set edition = 2021 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6f0cb22..55567a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ documentation = "http://docs.rs/tokio-serial" readme = "README.md" keywords = ["rs232", "serial", "tokio"] categories = ["asynchronous", "hardware-support"] -edition = "2018" +edition = "2021" [package.metadata] msrv = "1.46.0"