From cc293c182f6e5bc1f4e673efd45ccbb71cde4b63 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Fri, 22 Nov 2024 04:19:29 +0000 Subject: [PATCH] chore: remove default features from multihash-codetable (#241) This doesn't (yet) appear to make a difference but, once we release & update the builtin actors again, we may be able to drop a few dependencies from our tree? Regardless, it can't hurt. --- Cargo.toml | 2 +- frc46_token/Cargo.toml | 2 +- frc53_nft/Cargo.toml | 2 +- testing/test_actors/actors/basic_transfer_actor/Cargo.toml | 2 +- .../actors/frc46_factory_token/token_impl/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 326e4db0..34532d89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ thiserror = { version = "1.0.31" } integer-encoding = { version = "4.0.0" } num-traits = { version = "0.2.15" } anyhow = { version = "1.0.56" } -multihash-codetable = { version = "0.1.4" } +multihash-codetable = { version = "0.1.4", default-features = false } # internal deps of published packages frc42_dispatch = { version = "8.0.0", path = "./frc42_dispatch", default-features = false } diff --git a/frc46_token/Cargo.toml b/frc46_token/Cargo.toml index 787f0b6a..1d9b410e 100644 --- a/frc46_token/Cargo.toml +++ b/frc46_token/Cargo.toml @@ -17,7 +17,7 @@ fvm_ipld_hamt = { workspace = true } fvm_ipld_encoding = { workspace = true } fvm_sdk = { workspace = true } fvm_shared = { workspace = true } -multihash-codetable = { workspace = true } +multihash-codetable = { workspace = true, features = ["blake2b"] } num-traits = { workspace = true } serde = { workspace = true } serde_tuple = { workspace = true } diff --git a/frc53_nft/Cargo.toml b/frc53_nft/Cargo.toml index ac6a8445..340e1799 100644 --- a/frc53_nft/Cargo.toml +++ b/frc53_nft/Cargo.toml @@ -21,7 +21,7 @@ fvm_ipld_encoding = { workspace = true } fvm_sdk = { workspace = true } fvm_shared = { workspace = true } integer-encoding = { workspace = true } -multihash-codetable = { workspace = true } +multihash-codetable = { workspace = true, features = ["blake2b"] } num-traits = { workspace = true } serde = { workspace = true } serde_tuple = { workspace = true } diff --git a/testing/test_actors/actors/basic_transfer_actor/Cargo.toml b/testing/test_actors/actors/basic_transfer_actor/Cargo.toml index caa21804..86b56409 100644 --- a/testing/test_actors/actors/basic_transfer_actor/Cargo.toml +++ b/testing/test_actors/actors/basic_transfer_actor/Cargo.toml @@ -14,7 +14,7 @@ fvm_ipld_blockstore = { workspace = true } fvm_ipld_encoding = { workspace = true } fvm_sdk = { workspace = true } fvm_shared = { workspace = true } -multihash-codetable = { workspace = true } +multihash-codetable = { workspace = true, features = ["blake2b"] } serde = { workspace = true } serde_tuple = { workspace = true } diff --git a/testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml b/testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml index 8480aca3..3411e355 100644 --- a/testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml +++ b/testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml @@ -13,7 +13,7 @@ fvm_ipld_blockstore = { workspace = true } fvm_ipld_encoding = { workspace = true } fvm_sdk = { workspace = true } fvm_shared = { workspace = true } -multihash-codetable = { workspace = true } +multihash-codetable = { workspace = true, features = ["blake2b"] } serde = { workspace = true } serde_tuple = { workspace = true } thiserror = { workspace = true }