From 4fb3704065c49d42ada18662c2ecf0b14bfde00d Mon Sep 17 00:00:00 2001 From: Jennifer Wang Date: Mon, 13 Jun 2022 21:08:27 -0400 Subject: [PATCH 1/3] deps: update deps according to ref-fvm v1.0.0-rc.3 --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- actors/account/Cargo.toml | 4 ++-- actors/cron/Cargo.toml | 4 ++-- actors/init/Cargo.toml | 4 ++-- actors/market/Cargo.toml | 6 +++--- actors/miner/Cargo.toml | 6 +++--- actors/multisig/Cargo.toml | 4 ++-- actors/paych/Cargo.toml | 6 +++--- actors/power/Cargo.toml | 4 ++-- actors/reward/Cargo.toml | 4 ++-- actors/runtime/Cargo.toml | 8 ++++---- actors/state/Cargo.toml | 4 ++-- actors/system/Cargo.toml | 4 ++-- actors/verifreg/Cargo.toml | 4 ++-- test_vm/Cargo.toml | 4 ++-- 16 files changed, 44 insertions(+), 44 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1a9e42ae3..9954bccc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -572,9 +572,9 @@ dependencies = [ [[package]] name = "fil_actor_bundler" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "646120abeada2d68a2970cc52a624642c100d5c83189110846b16e807b88e06a" +checksum = "715d3ad31a6e4715a49747e136d5daa1a6bbe7c078385bca7e11215c57884a35" dependencies = [ "anyhow", "async-std", @@ -982,9 +982,9 @@ dependencies = [ [[package]] name = "fvm_ipld_amt" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bbe1fb55191eec39304eccc690e94bfe2462a829dbc0a227559d2bf1c33b4dc" +checksum = "48d09e5aa7de45452676d18fcb70b750acd65faae7a4fe18fe784b4c85f869fb" dependencies = [ "ahash", "anyhow", @@ -1038,9 +1038,9 @@ dependencies = [ [[package]] name = "fvm_ipld_encoding" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39a5b85beb7f0c612abbe36ce013d50fd4c5304098f7b439a32c82526d7d800a" +checksum = "ce9cfcb4ae444801009182fded790dd56aff9c9a567e54510e2ccf14fb9daf8e" dependencies = [ "anyhow", "cid", @@ -1077,9 +1077,9 @@ dependencies = [ [[package]] name = "fvm_sdk" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5823623e85fa75b779c12ac793485a01d6f3a420b2b96eabeef26e1ce1aa3fc8" +checksum = "3bd162cff8cab78c3798762bc6879429ecbd0f5515856bcb3bc31d197208db70" dependencies = [ "cid", "fvm_ipld_encoding", @@ -1092,9 +1092,9 @@ dependencies = [ [[package]] name = "fvm_shared" -version = "0.7.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282f5fb4f2eb9f916badd253aa4898d7ba20bdda3e76a2f94d42ee67acb6ba2e" +checksum = "94c2485c563703b730df0502e2e8fcea86bc183b7018a080c6a5b15b7a29c5d0" dependencies = [ "anyhow", "bimap", diff --git a/Cargo.toml b/Cargo.toml index 846cd72ca..14d981e19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ fil_actors_runtime = { version = "8.0.0-alpha.1", path = "./actors/runtime", fea fil_actor_state = { version = "8.0.0-alpha.1", path = "./actors/state", features = ["fil-actor"] } [build-dependencies] -fil_actor_bundler = "3.0.3" +fil_actor_bundler = "3.0.4" cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } [dependencies] diff --git a/actors/account/Cargo.toml b/actors/account/Cargo.toml index a7a25e3c5..6496cdbc2 100644 --- a/actors/account/Cargo.toml +++ b/actors/account/Cargo.toml @@ -14,12 +14,12 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } serde = { version = "1.0.136", features = ["derive"] } num-traits = "0.2.14" num-derive = "0.3.3" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/cron/Cargo.toml b/actors/cron/Cargo.toml index 6dd570476..73c06304a 100644 --- a/actors/cron/Cargo.toml +++ b/actors/cron/Cargo.toml @@ -15,13 +15,13 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" log = "0.4.14" serde = { version = "1.0.136", features = ["derive"] } fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/init/Cargo.toml b/actors/init/Cargo.toml index 048e4926b..80236f464 100644 --- a/actors/init/Cargo.toml +++ b/actors/init/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_hamt = "0.5.1" serde = { version = "1.0.136", features = ["derive"] } num-traits = "0.2.14" @@ -24,7 +24,7 @@ cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] anyhow = "1.0.56" log = "0.4.14" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/market/Cargo.toml b/actors/market/Cargo.toml index 6bc3dde68..0c51217d0 100644 --- a/actors/market/Cargo.toml +++ b/actors/market/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } fvm_ipld_hamt = "0.5.1" -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_bitfield = "0.5.2" num-traits = "0.2.14" num-derive = "0.3.3" @@ -25,7 +25,7 @@ cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] log = "0.4.14" anyhow = "1.0.56" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" libipld-core = { version = "0.13.1", features = ["serde-codec"] } [dev-dependencies] @@ -33,7 +33,7 @@ fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features fil_actor_power = { version = "8.0.0-alpha.1", path = "../power" } fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward" } fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../verifreg" } -fvm_ipld_amt = { version = "0.4.1", features = ["go-interop"] } +fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } multihash = { version = "0.16.1", default-features = false } regex = "1" itertools = "0.10" diff --git a/actors/miner/Cargo.toml b/actors/miner/Cargo.toml index c16c993e4..090d6aa9d 100644 --- a/actors/miner/Cargo.toml +++ b/actors/miner/Cargo.toml @@ -15,9 +15,9 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_bitfield = "0.5.2" -fvm_ipld_amt = { version = "0.4.1", features = ["go-interop"] } +fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } fvm_ipld_hamt = "0.5.1" serde = { version = "1.0.136", features = ["derive"] } cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } @@ -29,7 +29,7 @@ byteorder = "1.4.3" anyhow = "1.0.56" itertools = "0.10.3" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/multisig/Cargo.toml b/actors/multisig/Cargo.toml index eacc2687b..8e6c441ab 100644 --- a/actors/multisig/Cargo.toml +++ b/actors/multisig/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_hamt = "0.5.1" num-traits = "0.2.14" num-derive = "0.3.3" @@ -25,7 +25,7 @@ integer-encoding = { version = "3.0.3", default-features = false } serde = { version = "1.0.136", features = ["derive"] } anyhow = "1.0.56" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/paych/Cargo.toml b/actors/paych/Cargo.toml index 85191d54d..424ff15db 100644 --- a/actors/paych/Cargo.toml +++ b/actors/paych/Cargo.toml @@ -15,18 +15,18 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" serde = { version = "1.0.136", features = ["derive"] } cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } anyhow = "1.0.56" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } -fvm_ipld_amt = { version = "0.4.1", features = ["go-interop"] } +fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } derive_builder = "0.10.2" [features] fil-actor = [] diff --git a/actors/power/Cargo.toml b/actors/power/Cargo.toml index a4033dc43..d166a7f1f 100644 --- a/actors/power/Cargo.toml +++ b/actors/power/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_hamt = "0.5.1" num-traits = "0.2.14" num-derive = "0.3.3" @@ -27,7 +27,7 @@ lazy_static = "1.4.0" serde = { version = "1.0.136", features = ["derive"] } anyhow = "1.0.56" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/reward/Cargo.toml b/actors/reward/Cargo.toml index 00a89289f..14cd88fe2 100644 --- a/actors/reward/Cargo.toml +++ b/actors/reward/Cargo.toml @@ -15,14 +15,14 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" log = "0.4.14" lazy_static = "1.4.0" serde = { version = "1.0.136", features = ["derive"] } fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/actors/runtime/Cargo.toml b/actors/runtime/Cargo.toml index 7d659a221..1c381c914 100644 --- a/actors/runtime/Cargo.toml +++ b/actors/runtime/Cargo.toml @@ -9,8 +9,8 @@ repository = "https://github.com/filecoin-project/builtin-actors" [dependencies] fvm_ipld_hamt = "0.5.1" -fvm_ipld_amt = { version = "0.4.1", features = ["go-interop"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } +fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" serde = { version = "1.0.136", features = ["derive"] } @@ -27,10 +27,10 @@ thiserror = "1.0.30" getrandom = { version = "0.2.5", features = ["js"] } hex = { version = "0.4.3", optional = true } anyhow = "1.0.56" -fvm_sdk = { version = "1.0.0-rc.2", optional = true } +fvm_sdk = { version = "1.0.0-rc.3", optional = true } blake2b_simd = "1.0" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" multihash = { version = "0.16.1", default-features = false } rand = "0.8.5" serde_repr = "0.1.8" diff --git a/actors/state/Cargo.toml b/actors/state/Cargo.toml index a8bde35b6..a4d8eaebd 100644 --- a/actors/state/Cargo.toml +++ b/actors/state/Cargo.toml @@ -26,8 +26,8 @@ fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward"} fil_actor_system = { version = "8.0.0-alpha.1", path = "../system"} fil_actor_init = { version = "8.0.0-alpha.1", path = "../init"} fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime"} -fvm_shared = { version = "0.7.1", default-features = false } -fvm_ipld_encoding = "0.2.1" +fvm_shared = { version = "0.8.0", default-features = false } +fvm_ipld_encoding = "0.2.2" fvm_ipld_blockstore = "0.1.1" num-traits = "0.2.14" anyhow = "1.0.56" diff --git a/actors/system/Cargo.toml b/actors/system/Cargo.toml index 97dbeacdf..ea8b79136 100644 --- a/actors/system/Cargo.toml +++ b/actors/system/Cargo.toml @@ -15,8 +15,8 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } -fvm_ipld_encoding = "0.2.1" +fvm_shared = { version = "0.8.0", default-features = false } +fvm_ipld_encoding = "0.2.2" fvm_ipld_blockstore = "0.1.1" num-traits = "0.2.14" anyhow = "1.0.56" diff --git a/actors/verifreg/Cargo.toml b/actors/verifreg/Cargo.toml index 4b460b300..8be516928 100644 --- a/actors/verifreg/Cargo.toml +++ b/actors/verifreg/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"] [dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } -fvm_shared = { version = "0.7.1", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } serde = { version = "1.0.136", features = ["derive"] } num-traits = "0.2.14" num-derive = "0.3.3" @@ -24,7 +24,7 @@ lazy_static = "1.4.0" anyhow = "1.0.56" fvm_ipld_hamt = "0.5.1" fvm_ipld_blockstore = "0.1.1" -fvm_ipld_encoding = "0.2.1" +fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } diff --git a/test_vm/Cargo.toml b/test_vm/Cargo.toml index 4abaf3492..d0764b03c 100644 --- a/test_vm/Cargo.toml +++ b/test_vm/Cargo.toml @@ -23,8 +23,8 @@ fil_actor_market = { version = "8.0.0-alpha.1", path = "../actors/market" } fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../actors/verifreg" } fil_actor_miner = { version = "8.0.0-alpha.1", path = "../actors/miner" } lazy_static = "1.4.0" -fvm_shared = { version = "0.7.1", default-features = false } -fvm_ipld_encoding = { version = "0.2.0", default-features = false } +fvm_shared = { version = "0.8.0", default-features = false } +fvm_ipld_encoding = { version = "0.2.2", default-features = false } fvm_ipld_blockstore = { version = "0.1.1", default-features = false } fvm_ipld_bitfield = "0.5.2" fvm_ipld_hamt = "0.5.1" From 3027c365f516e1cba6f156d4fb9dbd8c893d5b62 Mon Sep 17 00:00:00 2001 From: Jennifer Wang Date: Mon, 13 Jun 2022 21:15:54 -0400 Subject: [PATCH 2/3] update the new snark version --- actors/miner/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actors/miner/src/lib.rs b/actors/miner/src/lib.rs index 688f7cf78..073a4b862 100644 --- a/actors/miner/src/lib.rs +++ b/actors/miner/src/lib.rs @@ -805,7 +805,7 @@ impl Actor { rt.verify_aggregate_seals(&AggregateSealVerifyProofAndInfos { miner: miner_actor_id, seal_proof, - aggregate_proof: RegisteredAggregateProof::SnarkPackV1, + aggregate_proof: RegisteredAggregateProof::SnarkPackV2, proof: params.aggregate_proof, infos: svis, }) From 591d2035549d3391e3304b3c275f7d5a02f8d1f9 Mon Sep 17 00:00:00 2001 From: Jennifer Wang Date: Mon, 13 Jun 2022 21:33:29 -0400 Subject: [PATCH 3/3] Release 8.0.0-rc.1 --- Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 26 +++++++++++++------------- actors/account/Cargo.toml | 6 +++--- actors/cron/Cargo.toml | 6 +++--- actors/init/Cargo.toml | 6 +++--- actors/market/Cargo.toml | 12 ++++++------ actors/miner/Cargo.toml | 14 +++++++------- actors/multisig/Cargo.toml | 6 +++--- actors/paych/Cargo.toml | 6 +++--- actors/power/Cargo.toml | 8 ++++---- actors/reward/Cargo.toml | 6 +++--- actors/runtime/Cargo.toml | 2 +- actors/state/Cargo.toml | 24 ++++++++++++------------ actors/system/Cargo.toml | 6 +++--- actors/verifreg/Cargo.toml | 6 +++--- test_vm/Cargo.toml | 24 ++++++++++++------------ 16 files changed, 92 insertions(+), 92 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9954bccc2..9f69ad00b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -559,7 +559,7 @@ dependencies = [ [[package]] name = "fil_actor_account" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "fil_actors_runtime", "fvm_ipld_blockstore", @@ -592,7 +592,7 @@ dependencies = [ [[package]] name = "fil_actor_cron" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "fil_actors_runtime", "fvm_ipld_blockstore", @@ -606,7 +606,7 @@ dependencies = [ [[package]] name = "fil_actor_init" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -623,7 +623,7 @@ dependencies = [ [[package]] name = "fil_actor_market" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -649,7 +649,7 @@ dependencies = [ [[package]] name = "fil_actor_miner" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "byteorder", @@ -677,7 +677,7 @@ dependencies = [ [[package]] name = "fil_actor_multisig" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -695,7 +695,7 @@ dependencies = [ [[package]] name = "fil_actor_paych" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -712,7 +712,7 @@ dependencies = [ [[package]] name = "fil_actor_power" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -733,7 +733,7 @@ dependencies = [ [[package]] name = "fil_actor_reward" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "fil_actors_runtime", "fvm_ipld_blockstore", @@ -775,7 +775,7 @@ dependencies = [ [[package]] name = "fil_actor_system" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -790,7 +790,7 @@ dependencies = [ [[package]] name = "fil_actor_verifreg" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "cid", @@ -807,7 +807,7 @@ dependencies = [ [[package]] name = "fil_actors_runtime" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "anyhow", "base64", @@ -840,7 +840,7 @@ dependencies = [ [[package]] name = "fil_builtin_actors_bundle" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" dependencies = [ "cid", "clap", diff --git a/Cargo.toml b/Cargo.toml index 14d981e19..c5bb38226 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_builtin_actors_bundle" description = "Bundle of FVM-compatible Wasm bytecode for Filecoin builtin actors" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["Protocol Labs", "Filecoin Core Devs"] edition = "2021" @@ -10,18 +10,18 @@ keywords = ["filecoin", "web3", "wasm"] exclude = ["examples", ".github"] [target.'cfg(target_arch = "wasm32")'.dependencies] -fil_actor_account = { version = "8.0.0-alpha.1", path = "./actors/account", features = ["fil-actor"] } -fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "./actors/verifreg", features = ["fil-actor"] } -fil_actor_cron = { version = "8.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] } -fil_actor_market = { version = "8.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] } -fil_actor_multisig = { version = "8.0.0-alpha.1", path = "./actors/multisig", features = ["fil-actor"] } -fil_actor_paych = { version = "8.0.0-alpha.1", path = "./actors/paych", features = ["fil-actor"] } -fil_actor_power = { version = "8.0.0-alpha.1", path = "./actors/power", features = ["fil-actor"] } -fil_actor_miner = { version = "8.0.0-alpha.1", path = "./actors/miner", features = ["fil-actor"] } -fil_actor_reward = { version = "8.0.0-alpha.1", path = "./actors/reward", features = ["fil-actor"] } -fil_actor_system = { version = "8.0.0-alpha.1", path = "./actors/system", features = ["fil-actor"] } -fil_actor_init = { version = "8.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] } -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "./actors/runtime", features = ["fil-actor"] } +fil_actor_account = { version = "8.0.0-rc.1", path = "./actors/account", features = ["fil-actor"] } +fil_actor_verifreg = { version = "8.0.0-rc.1", path = "./actors/verifreg", features = ["fil-actor"] } +fil_actor_cron = { version = "8.0.0-rc.1", path = "./actors/cron", features = ["fil-actor"] } +fil_actor_market = { version = "8.0.0-rc.1", path = "./actors/market", features = ["fil-actor"] } +fil_actor_multisig = { version = "8.0.0-rc.1", path = "./actors/multisig", features = ["fil-actor"] } +fil_actor_paych = { version = "8.0.0-rc.1", path = "./actors/paych", features = ["fil-actor"] } +fil_actor_power = { version = "8.0.0-rc.1", path = "./actors/power", features = ["fil-actor"] } +fil_actor_miner = { version = "8.0.0-rc.1", path = "./actors/miner", features = ["fil-actor"] } +fil_actor_reward = { version = "8.0.0-rc.1", path = "./actors/reward", features = ["fil-actor"] } +fil_actor_system = { version = "8.0.0-rc.1", path = "./actors/system", features = ["fil-actor"] } +fil_actor_init = { version = "8.0.0-rc.1", path = "./actors/init", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "./actors/runtime", features = ["fil-actor"] } fil_actor_state = { version = "8.0.0-alpha.1", path = "./actors/state", features = ["fil-actor"] } [build-dependencies] diff --git a/actors/account/Cargo.toml b/actors/account/Cargo.toml index 6496cdbc2..00c05f31b 100644 --- a/actors/account/Cargo.toml +++ b/actors/account/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_account" description = "Builtin account actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -13,7 +13,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } serde = { version = "1.0.136", features = ["derive"] } num-traits = "0.2.14" @@ -22,7 +22,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } [features] fil-actor = [] diff --git a/actors/cron/Cargo.toml b/actors/cron/Cargo.toml index 73c06304a..c88699a88 100644 --- a/actors/cron/Cargo.toml +++ b/actors/cron/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_cron" description = "Builtin cron actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" @@ -24,7 +24,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } [features] fil-actor = [] diff --git a/actors/init/Cargo.toml b/actors/init/Cargo.toml index 80236f464..930a0441c 100644 --- a/actors/init/Cargo.toml +++ b/actors/init/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_init" description = "Builtin init actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_hamt = "0.5.1" serde = { version = "1.0.136", features = ["derive"] } @@ -27,7 +27,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } [features] fil-actor = [] diff --git a/actors/market/Cargo.toml b/actors/market/Cargo.toml index 0c51217d0..314d84598 100644 --- a/actors/market/Cargo.toml +++ b/actors/market/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_market" description = "Builtin market actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_ipld_hamt = "0.5.1" fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_bitfield = "0.5.2" @@ -29,10 +29,10 @@ fvm_ipld_encoding = "0.2.2" libipld-core = { version = "0.13.1", features = ["serde-codec"] } [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } -fil_actor_power = { version = "8.0.0-alpha.1", path = "../power" } -fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward" } -fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../verifreg" } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actor_power = { version = "8.0.0-rc.1", path = "../power" } +fil_actor_reward = { version = "8.0.0-rc.1", path = "../reward" } +fil_actor_verifreg = { version = "8.0.0-rc.1", path = "../verifreg" } fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } multihash = { version = "0.16.1", default-features = false } regex = "1" diff --git a/actors/miner/Cargo.toml b/actors/miner/Cargo.toml index 090d6aa9d..99681f166 100644 --- a/actors/miner/Cargo.toml +++ b/actors/miner/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_miner" description = "Builtin miner actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_bitfield = "0.5.2" fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } @@ -32,11 +32,11 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } -fil_actor_account = { version = "8.0.0-alpha.1", path = "../account" } -fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward" } -fil_actor_power = { version = "8.0.0-alpha.1", path = "../power" } -fil_actor_market = { version = "8.0.0-alpha.1", path = "../market" } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actor_account = { version = "8.0.0-rc.1", path = "../account" } +fil_actor_reward = { version = "8.0.0-rc.1", path = "../reward" } +fil_actor_power = { version = "8.0.0-rc.1", path = "../power" } +fil_actor_market = { version = "8.0.0-rc.1", path = "../market" } rand = "0.8.5" cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } multihash = { version = "0.16.1", default-features = false } diff --git a/actors/multisig/Cargo.toml b/actors/multisig/Cargo.toml index 8e6c441ab..4720d5f8c 100644 --- a/actors/multisig/Cargo.toml +++ b/actors/multisig/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_multisig" description = "Builtin multisig actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_hamt = "0.5.1" num-traits = "0.2.14" @@ -28,7 +28,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } [features] fil-actor = [] diff --git a/actors/paych/Cargo.toml b/actors/paych/Cargo.toml index 424ff15db..c78e7d70f 100644 --- a/actors/paych/Cargo.toml +++ b/actors/paych/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_paych" description = "Builtin paych actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" @@ -25,7 +25,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] } derive_builder = "0.10.2" [features] diff --git a/actors/power/Cargo.toml b/actors/power/Cargo.toml index d166a7f1f..f7c3945bb 100644 --- a/actors/power/Cargo.toml +++ b/actors/power/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_power" description = "Builtin power actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_hamt = "0.5.1" num-traits = "0.2.14" @@ -30,8 +30,8 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } -fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward" } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actor_reward = { version = "8.0.0-rc.1", path = "../reward" } [features] fil-actor = [] diff --git a/actors/reward/Cargo.toml b/actors/reward/Cargo.toml index 14cd88fe2..efe1e88e6 100644 --- a/actors/reward/Cargo.toml +++ b/actors/reward/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_reward" description = "Builtin reward actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } num-traits = "0.2.14" num-derive = "0.3.3" @@ -25,7 +25,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } num = "0.4.0" [features] fil-actor = [] diff --git a/actors/runtime/Cargo.toml b/actors/runtime/Cargo.toml index 1c381c914..d2ade04bc 100644 --- a/actors/runtime/Cargo.toml +++ b/actors/runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actors_runtime" description = "System actors for the Filecoin protocol" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2021" diff --git a/actors/state/Cargo.toml b/actors/state/Cargo.toml index a4d8eaebd..319d63356 100644 --- a/actors/state/Cargo.toml +++ b/actors/state/Cargo.toml @@ -14,18 +14,18 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actor_account = { version = "8.0.0-alpha.1", path = "../account"} -fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../verifreg"} -fil_actor_cron = { version = "8.0.0-alpha.1", path = "../cron"} -fil_actor_market = { version = "8.0.0-alpha.1", path = "../market"} -fil_actor_multisig = { version = "8.0.0-alpha.1", path = "../multisig"} -fil_actor_paych = { version = "8.0.0-alpha.1", path = "../paych"} -fil_actor_power = { version = "8.0.0-alpha.1", path = "../power"} -fil_actor_miner = { version = "8.0.0-alpha.1", path = "../miner"} -fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward"} -fil_actor_system = { version = "8.0.0-alpha.1", path = "../system"} -fil_actor_init = { version = "8.0.0-alpha.1", path = "../init"} -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime"} +fil_actor_account = { version = "8.0.0-rc.1", path = "../account"} +fil_actor_verifreg = { version = "8.0.0-rc.1", path = "../verifreg"} +fil_actor_cron = { version = "8.0.0-rc.1", path = "../cron"} +fil_actor_market = { version = "8.0.0-rc.1", path = "../market"} +fil_actor_multisig = { version = "8.0.0-rc.1", path = "../multisig"} +fil_actor_paych = { version = "8.0.0-rc.1", path = "../paych"} +fil_actor_power = { version = "8.0.0-rc.1", path = "../power"} +fil_actor_miner = { version = "8.0.0-rc.1", path = "../miner"} +fil_actor_reward = { version = "8.0.0-rc.1", path = "../reward"} +fil_actor_system = { version = "8.0.0-rc.1", path = "../system"} +fil_actor_init = { version = "8.0.0-rc.1", path = "../init"} +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime"} fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_encoding = "0.2.2" fvm_ipld_blockstore = "0.1.1" diff --git a/actors/system/Cargo.toml b/actors/system/Cargo.toml index ea8b79136..66d2acc80 100644 --- a/actors/system/Cargo.toml +++ b/actors/system/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_system" description = "Builtin system actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_encoding = "0.2.2" fvm_ipld_blockstore = "0.1.1" @@ -25,7 +25,7 @@ serde = { version = "1.0.136", features = ["derive"] } cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } [features] fil-actor = [] diff --git a/actors/verifreg/Cargo.toml b/actors/verifreg/Cargo.toml index 8be516928..63a24d1c5 100644 --- a/actors/verifreg/Cargo.toml +++ b/actors/verifreg/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fil_actor_verifreg" description = "Builtin verifreg actor for Filecoin" -version = "8.0.0-alpha.1" +version = "8.0.0-rc.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] crate-type = ["cdylib", "lib"] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] } fvm_shared = { version = "0.8.0", default-features = false } serde = { version = "1.0.136", features = ["derive"] } num-traits = "0.2.14" @@ -27,7 +27,7 @@ fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] } [features] fil-actor = [] diff --git a/test_vm/Cargo.toml b/test_vm/Cargo.toml index d0764b03c..809514d4a 100644 --- a/test_vm/Cargo.toml +++ b/test_vm/Cargo.toml @@ -10,18 +10,18 @@ keywords = ["filecoin", "web3", "wasm"] [lib] [dependencies] -fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../actors/runtime", features = [ "test_utils" ] } -fil_actor_init = { version = "8.0.0-alpha.1", path = "../actors/init" } -fil_actor_cron = { version = "8.0.0-alpha.1", path = "../actors/cron" } -fil_actor_system = { version = "8.0.0-alpha.1", path = "../actors/system" } -fil_actor_account = { version = "8.0.0-alpha.1", path = "../actors/account" } -fil_actor_multisig = { version = "8.0.0-alpha.1", path = "../actors/multisig" } -fil_actor_paych = { version = "8.0.0-alpha.1", path = "../actors/paych" } -fil_actor_reward = { version = "8.0.0-alpha.1", path = "../actors/reward" } -fil_actor_power = { version = "8.0.0-alpha.1", path = "../actors/power" } -fil_actor_market = { version = "8.0.0-alpha.1", path = "../actors/market" } -fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../actors/verifreg" } -fil_actor_miner = { version = "8.0.0-alpha.1", path = "../actors/miner" } +fil_actors_runtime = { version = "8.0.0-rc.1", path = "../actors/runtime", features = [ "test_utils" ] } +fil_actor_init = { version = "8.0.0-rc.1", path = "../actors/init" } +fil_actor_cron = { version = "8.0.0-rc.1", path = "../actors/cron" } +fil_actor_system = { version = "8.0.0-rc.1", path = "../actors/system" } +fil_actor_account = { version = "8.0.0-rc.1", path = "../actors/account" } +fil_actor_multisig = { version = "8.0.0-rc.1", path = "../actors/multisig" } +fil_actor_paych = { version = "8.0.0-rc.1", path = "../actors/paych" } +fil_actor_reward = { version = "8.0.0-rc.1", path = "../actors/reward" } +fil_actor_power = { version = "8.0.0-rc.1", path = "../actors/power" } +fil_actor_market = { version = "8.0.0-rc.1", path = "../actors/market" } +fil_actor_verifreg = { version = "8.0.0-rc.1", path = "../actors/verifreg" } +fil_actor_miner = { version = "8.0.0-rc.1", path = "../actors/miner" } lazy_static = "1.4.0" fvm_shared = { version = "0.8.0", default-features = false } fvm_ipld_encoding = { version = "0.2.2", default-features = false }