Skip to content

Commit 7f313ee

Browse files
committed
chore: update fvm_shared & fvm_sdk
1 parent d718b1d commit 7f313ee

File tree

15 files changed

+52
-46
lines changed

15 files changed

+52
-46
lines changed

Cargo.lock

Lines changed: 30 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,14 @@ members = [
3939
"test_vm",
4040
]
4141

42-
[patch.crates-io]
43-
# Needed until a new release is published
44-
fvm_shared = { git = "https://github.com/filecoin-project/ref-fvm" }
45-
fvm_sdk = { git = "https://github.com/filecoin-project/ref-fvm" }
46-
fvm_ipld_hamt = { git = "https://github.com/filecoin-project/ref-fvm" }
47-
fvm_ipld_amt = { git = "https://github.com/filecoin-project/ref-fvm" }
48-
fvm_ipld_bitfield = { git = "https://github.com/filecoin-project/ref-fvm" }
49-
fvm_ipld_encoding = { git = "https://github.com/filecoin-project/ref-fvm" }
50-
fvm_ipld_blockstore = { git = "https://github.com/filecoin-project/ref-fvm" }
42+
#[patch.crates-io]
43+
#fvm_shared = { git = "https://github.com/filecoin-project/ref-fvm" }
44+
#fvm_sdk = { git = "https://github.com/filecoin-project/ref-fvm" }
45+
#fvm_ipld_hamt = { git = "https://github.com/filecoin-project/ref-fvm" }
46+
#fvm_ipld_amt = { git = "https://github.com/filecoin-project/ref-fvm" }
47+
#fvm_ipld_bitfield = { git = "https://github.com/filecoin-project/ref-fvm" }
48+
#fvm_ipld_encoding = { git = "https://github.com/filecoin-project/ref-fvm" }
49+
#fvm_ipld_blockstore = { git = "https://github.com/filecoin-project/ref-fvm" }
5150

5251
## Uncomment when working locally on ref-fvm and this repo simultaneously.
5352
## Assumes the ref-fvm checkout is in a sibling directory with the same name.

actors/account/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ crate-type = ["cdylib", "lib"]
1414

1515
[dependencies]
1616
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
17-
fvm_shared = { version = "0.4.1", default-features = false }
17+
fvm_shared = { version = "0.5.0", default-features = false }
1818
serde = { version = "1.0.136", features = ["derive"] }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"

actors/cron/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.4.1", default-features = false }
18+
fvm_shared = { version = "0.5.0", default-features = false }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"
2121
log = "0.4.14"

actors/init/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.4.1", default-features = false }
18+
fvm_shared = { version = "0.5.0", default-features = false }
1919
fvm_ipld_hamt = "0.4.0"
2020
serde = { version = "1.0.136", features = ["derive"] }
2121
num-traits = "0.2.14"

actors/market/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ crate-type = ["cdylib", "lib"]
1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
1818
fvm_ipld_hamt = "0.4.0"
19-
fvm_shared = { version = "0.4.1", default-features = false }
19+
fvm_shared = { version = "0.5.0", default-features = false }
2020
fvm_ipld_bitfield = "0.5.0"
2121
num-traits = "0.2.14"
2222
num-derive = "0.3.3"

actors/miner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.4.1", default-features = false }
18+
fvm_shared = { version = "0.5.0", default-features = false }
1919
fvm_ipld_bitfield = "0.5.0"
2020
fvm_ipld_amt = { version = "0.4.0", features = ["go-interop"] }
2121
fvm_ipld_hamt = "0.4.0"

actors/multisig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.4.1", default-features = false }
18+
fvm_shared = { version = "0.5.0", default-features = false }
1919
fvm_ipld_hamt = "0.4.0"
2020
num-traits = "0.2.14"
2121
num-derive = "0.3.3"

actors/paych/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.4.1", default-features = false }
18+
fvm_shared = { version = "0.5.0", default-features = false }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"
2121
serde = { version = "1.0.136", features = ["derive"] }

actors/power/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
1717
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.4.1", default-features = false }
18+
fvm_shared = { version = "0.5.0", default-features = false }
1919
fvm_ipld_hamt = "0.4.0"
2020
num-traits = "0.2.14"
2121
num-derive = "0.3.3"

0 commit comments

Comments
 (0)