-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
709c9db
commit 94d71f5
Showing
18 changed files
with
57 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_account_state" | ||
description = "Builtin account actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_cron_state" | ||
description = "Builtin cron actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_init_state" | ||
description = "Builtin init actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ keywords = ["filecoin", "web3", "wasm"] | |
[dependencies] | ||
anyhow = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_blockstore = { workspace = true } | ||
fvm_ipld_encoding = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_market_state" | ||
description = "Builtin market actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -18,8 +18,8 @@ arb = ["dep:quickcheck"] | |
[dependencies] | ||
anyhow = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actor_verifreg_state = { version = "7.0.0", path = "../verifreg" } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actor_verifreg_state = { version = "8.0.0", path = "../verifreg" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_bitfield = { workspace = true } | ||
fvm_ipld_blockstore = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_miner_state" | ||
description = "Builtin miner actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -21,8 +21,8 @@ crate-type = ["cdylib", "lib"] | |
anyhow = { workspace = true } | ||
bitflags = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actor_verifreg_state = { version = "7.0.0", path = "../verifreg" } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actor_verifreg_state = { version = "8.0.0", path = "../verifreg" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_amt = { workspace = true } | ||
fvm_ipld_bitfield = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_multisig_state" | ||
description = "Builtin multisig actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -20,7 +20,7 @@ crate-type = ["cdylib", "lib"] | |
[dependencies] | ||
anyhow = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_blockstore = { workspace = true } | ||
fvm_ipld_encoding = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_paych_state" | ||
description = "Builtin paych actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"] | |
|
||
[dependencies] | ||
cid = { workspace = true } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_encoding = { workspace = true } | ||
fvm_shared = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_power_state" | ||
description = "Builtin power actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ keywords = ["filecoin", "web3", "wasm"] | |
[dependencies] | ||
anyhow = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_blockstore = { workspace = true } | ||
fvm_ipld_encoding = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_reward_state" | ||
description = "Builtin reward actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_system_state" | ||
description = "Builtin system actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "fil_actor_verifreg_state" | ||
description = "Builtin verifreg actor for Filecoin" | ||
version = "7.0.0" | ||
version = "8.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"ChainSafe Systems <[email protected]>", | ||
|
@@ -20,7 +20,7 @@ crate-type = ["cdylib", "lib"] | |
[dependencies] | ||
anyhow = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actors_shared = { version = "7.0.0", path = "../../fil_actors_shared" } | ||
fil_actors_shared = { version = "8.0.0", path = "../../fil_actors_shared" } | ||
frc42_macros = { workspace = true } | ||
fvm_ipld_blockstore = { workspace = true } | ||
fvm_ipld_encoding = { workspace = true } | ||
|
Oops, something went wrong.