From 70548f6b50d8af992a8d5900ba21a7c1d06d165e Mon Sep 17 00:00:00 2001 From: VladimirBramstedt <75995382+VladimirBramstedt@users.noreply.github.com> Date: Thu, 10 Nov 2022 17:57:56 +0100 Subject: [PATCH] fix default features the bytes crate is only no-std with no default features... --- bytestring/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytestring/Cargo.toml b/bytestring/Cargo.toml index 466f8030..92131e4a 100644 --- a/bytestring/Cargo.toml +++ b/bytestring/Cargo.toml @@ -18,7 +18,7 @@ name = "bytestring" path = "src/lib.rs" [dependencies] -bytes = "1.2" +bytes = { version = "1.2", default-features = false } serde = { version = "1.0", optional = true } [dev-dependencies]