From 76e4e11b1f6d2fc95e3d0db78a96a10d4e24ae93 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 20 Nov 2024 16:10:00 -0800 Subject: [PATCH] [DO NOT MERGE] switch to git deps for actors-utils --- Cargo.toml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d8fbf7583..65c66af22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -127,9 +127,12 @@ ipld-core = { version = "0.4.1", features = ["serde"] } integer-encoding = { version = "3.0.3", default-features = false } # helix-onchain -fvm_actor_utils = "11.0.0" -frc42_dispatch = "7.0.0" -frc46_token = "11.0.0" +#fvm_actor_utils = "11.0.0" +#frc42_dispatch = "7.0.0" +#frc46_token = "11.0.0" +fvm_actor_utils = { git = "https://github.com/filecoin-project/actors-utils", branch = "steb/update-multihash" } +frc42_dispatch = { git = "https://github.com/filecoin-project/actors-utils", branch = "steb/update-multihash" } +frc46_token = { git = "https://github.com/filecoin-project/actors-utils", branch = "steb/update-multihash" } # FVM fvm_sdk = "4.5.0" @@ -165,7 +168,7 @@ fil_actors_integration_tests = { version = "1.0.0", path = "integration_tests" } vm_api = { version = "1.0.0", path = "vm_api" } test_vm = { path = "test_vm" } -[patch.crates-io] +#[patch.crates-io] #fvm_shared = { git = "https://github.com/filecoin-project/ref-fvm", branch = "master" } #fvm_sdk = { git = "https://github.com/filecoin-project/ref-fvm", branch = "master" } #fvm_ipld_hamt = { git = "https://github.com/filecoin-project/ref-fvm", branch = "master" } @@ -173,9 +176,9 @@ test_vm = { path = "test_vm" } #fvm_ipld_bitfield = { git = "https://github.com/filecoin-project/ref-fvm", branch = "master" } #fvm_ipld_encoding = { git = "https://github.com/filecoin-project/ref-fvm", branch = "master" } #fvm_ipld_blockstore = { git = "https://github.com/filecoin-project/ref-fvm", branch = "master" } -fvm_actor_utils = { git = "https://github.com/filecoin-project/actors-utils", branch = "steb/update-multihash" } -frc42_dispatch = { git = "https://github.com/filecoin-project/actors-utils", branch = "steb/update-multihash" } -frc46_token = { git = "https://github.com/filecoin-project/actors-utils", branch = "steb/update-multihash" } +#fvm_actor_utils = { git = "https://github.com/filecoin-project/actors-utils", branch = "main" } +#frc42_dispatch = { git = "https://github.com/filecoin-project/actors-utils", branch = "main" } +#frc46_token = { git = "https://github.com/filecoin-project/actors-utils", branch = "main" } ## Uncomment when working locally on ref-fvm and this repo simultaneously. ## Assumes the ref-fvm checkout is in a sibling directory with the same name.