Skip to content

Commit

Permalink
chore: remove default features from multihash-codetable (#241)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Stebalien authored Nov 22, 2024
1 parent 4e698c0 commit cc293c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion frc46_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion frc53_nft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion testing/test_actors/actors/basic_transfer_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit cc293c1

Please sign in to comment.