From 896ea86d69ed1ce88cb3db019fa13d68ed3e508a Mon Sep 17 00:00:00 2001 From: Hubert Bugaj Date: Thu, 9 Feb 2023 09:39:21 +0100 Subject: [PATCH] fix cargo warnings from workspace default features not set --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2f1c468ebf4d..7feb64c31049 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ derive_builder = "0.11" dialoguer = "0.10.2" digest = "0.10.5" directories = "4.0.1" -filecoin-proofs-api = "12.0" +filecoin-proofs-api = { version = "12.0", default-features = false } flume = "0.10" fs_extra = "1.2" futures = "0.3" @@ -87,7 +87,7 @@ fvm_ipld_bitfield = "0.5" fvm_ipld_blockstore = "0.1" fvm_ipld_car = "0.6" fvm_ipld_encoding = "0.2" -fvm_shared = "2.0" +fvm_shared = { version = "2.0", default-features = false } gethostname = "0.4" git-version = "0.3" hex = "0.4" @@ -107,7 +107,7 @@ libsecp256k1 = "0.7" log = "0.4" lru = "0.9" multibase = "0.9" -multihash = "0.16" +multihash = { version = "0.16", default-features = false } nonempty = "0.8.0" num = "0.4.0" num-bigint = "0.4" @@ -125,12 +125,12 @@ rand = "0.8" rayon = "1.5" regex = "1.6" rpassword = "7.2" -serde = "1.0" +serde = { version = "1.0", default-features = false } serde_ipld_dagcbor = "0.2" serde_json = "1.0" serde_repr = "0.1.8" serde_with = { version = "2.0.1", features = ["chrono_0_4"] } -sha2 = "0.10.5" +sha2 = { version = "0.10.5", default-features = false } structopt = "0.3" tempfile = "3.3" thiserror = "1.0" @@ -192,7 +192,7 @@ forest_key_management = { path = "./key_management" } forest_legacy_ipld_amt = { path = "./ipld/legacy_amt" } forest_libp2p = { path = "./node/forest_libp2p" } forest_libp2p_bitswap = { path = "./node/forest_libp2p/bitswap" } -forest_message = { path = "./vm/message" } +forest_message = { path = "./vm/message", default-features = false } forest_message_pool = { path = "./blockchain/message_pool" } forest_metrics = { path = "./utils/metrics" } forest_networks = { path = "./networks" }