From b18042dc0adb2bcab5113cdedb25711474361985 Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Wed, 31 May 2023 13:23:21 +0200 Subject: [PATCH] fix: no-std tests did not run due to dev-dependencies re-enabling std feature (#144) --- borsh/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index ccb3d7864..d9c9e4e69 100644 --- a/borsh/Cargo.toml +++ b/borsh/Cargo.toml @@ -30,7 +30,7 @@ bson = { version = "2", optional = true } bytes = "1" bson = "2" # Enable the "bytes" and "bson" features in integ tests: https://github.com/rust-lang/cargo/issues/2911#issuecomment-1464060655 -borsh = { path = ".", features = ["bytes", "bson"] } +borsh = { path = ".", default_features = false, features = ["bytes", "bson"] } [features] default = ["std"]