Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FVM version 4.1 #231

Merged
merged 3 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ members = [
[workspace.dependencies]
blake2b_simd = { version = "1.0.0" }
clap = { version = "4.3.21", features = ["derive"] }
cid = { version = "0.10.1", default-features = false, features = ["serde-codec"] }
fvm = { version = "~4.0", default-features = false }
fvm_integration_tests = "~4.0"
cid = { version = "0.10.1", default-features = false, features = [
"serde-codec",
] }
fvm = { version = "~4.1.1", default-features = false }
fvm_integration_tests = "~4.1.1"
fvm_ipld_amt = "0.6.0"
fvm_ipld_bitfield = "0.6.0"
fvm_ipld_blockstore = "0.2.0"
fvm_ipld_encoding = "0.4.0"
fvm_ipld_hamt = "0.8.0"
fvm_sdk = "~4.0"
fvm_shared = "~4.0"
fvm_ipld_hamt = "0.9.0"
fvm_sdk = "~4.1.1"
fvm_shared = "~4.1.1"
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
Expand All @@ -37,8 +39,8 @@ num-traits = { version = "0.2.15" }
anyhow = { version = "1.0.56" }

# internal deps of published packages
frc42_dispatch = { version = "5.0.0", path = "./frc42_dispatch", default-features=false }
fvm_actor_utils = { version = "9.0.0", path = "./fvm_actor_utils" }
frc42_dispatch = { version = "6.0.0", path = "./frc42_dispatch", default-features = false }
fvm_actor_utils = { version = "10.0.0", path = "./fvm_actor_utils" }

# only consumed by non-published packages
frc53_nft = { path = "./frc53_nft" }
Expand Down
6 changes: 3 additions & 3 deletions frc42_dispatch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frc42_dispatch"
description = "Filecoin FRC-0042 calling convention/dispatch support library"
version = "5.0.0"
version = "6.0.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "dispatch", "frc-0042"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand All @@ -12,8 +12,8 @@ edition = "2021"
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true, optional = true }
fvm_shared = { workspace = true }
frc42_hasher = { version = "3.0.0", path = "hasher" }
frc42_macros = { version = "3.0.0", path = "macros" }
frc42_hasher = { version = "4.0.0", path = "hasher" }
frc42_macros = { version = "4.0.0", path = "macros" }
thiserror = { version = "1.0.31" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion frc42_dispatch/hasher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frc42_hasher"
version = "3.0.0"
version = "4.0.0"
license = "MIT OR Apache-2.0"
description = "Filecoin FRC-0042 calling convention method hashing"
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
4 changes: 2 additions & 2 deletions frc42_dispatch/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frc42_macros"
version = "3.0.0"
version = "4.0.0"
license = "MIT OR Apache-2.0"
description = "Filecoin FRC-0042 calling convention procedural macros"
repository = "https://github.com/helix-onchain/filecoin/"
Expand All @@ -11,7 +11,7 @@ proc-macro = true

[dependencies]
blake2b_simd = { version = "1.0.0" }
frc42_hasher = { version = "3.0.0", path = "../hasher", default-features = false }
frc42_hasher = { version = "4.0.0", path = "../hasher", default-features = false }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion frc42_dispatch/macros/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"
publish = false

[dependencies]
frc42_macros = { version = "3.0.0", path = ".." }
frc42_macros = { version = "4.0.0", path = ".." }
2 changes: 1 addition & 1 deletion frc46_token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frc46_token"
description = "Filecoin FRC-0046 fungible token reference implementation"
version = "9.0.0"
version = "10.0.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm", "token", "frc-0046"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
2 changes: 1 addition & 1 deletion frc53_nft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[package]
name = "frc53_nft"
description = "Filecoin FRC-0053 non-fungible token reference implementation"
version = "3.0.0"
version = "4.0.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm", "token", "nft", "frc-0053"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
2 changes: 1 addition & 1 deletion fvm_actor_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_actor_utils"
description = "Utils for authoring native actors for the Filecoin Virtual Machine"
version = "9.0.0"
version = "10.0.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
4 changes: 2 additions & 2 deletions fvm_dispatch_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "fvm_dispatch_tools"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[dependencies]
blake2b_simd = { workspace = true }
clap = { workspace = true }
frc42_dispatch = { workspace = true }
frc42_dispatch = { workspace = true }
Loading