-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Due to bumping the cid/multihash versions.
- Loading branch information
Showing
38 changed files
with
334 additions
and
275 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 = "fvm_ipld_amt" | ||
description = "Sharded IPLD Array implementation." | ||
version = "0.5.1" | ||
version = "0.6.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
edition = "2021" | ||
|
@@ -14,8 +14,8 @@ thiserror = "1.0" | |
once_cell = "1.18" | ||
itertools = "0.11" | ||
anyhow = "1.0.71" | ||
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" } | ||
fvm_ipld_encoding = { version = "0.3", path = "../encoding" } | ||
fvm_ipld_blockstore = { version = "0.2", path = "../blockstore" } | ||
fvm_ipld_encoding = { version = "0.4", path = "../encoding" } | ||
|
||
[features] | ||
go-interop = [] | ||
|
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 = "fvm_ipld_blockstore" | ||
description = "Sharded IPLD Blockstore." | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
edition = "2021" | ||
|
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 = "fvm_ipld_car" | ||
description = "IPLD CAR handling library" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -13,8 +13,8 @@ serde = { version = "1.0", features = ["derive"] } | |
thiserror = "1.0" | ||
futures = "0.3.28" | ||
integer-encoding = { version = "3.0", features = ["futures_async"] } | ||
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" } | ||
fvm_ipld_encoding = { version = "0.3", path = "../encoding" } | ||
fvm_ipld_blockstore = { version = "0.2", path = "../blockstore" } | ||
fvm_ipld_encoding = { version = "0.4", path = "../encoding" } | ||
|
||
[dev-dependencies] | ||
async-std = { version = "1.12", features = ["attributes"] } |
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 = "fvm_ipld_encoding" | ||
description = "Sharded IPLD encoding." | ||
version = "0.3.3" | ||
version = "0.4.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
edition = "2021" | ||
|
@@ -15,7 +15,7 @@ serde_repr = "0.1" | |
cid = { workspace = true, features = ["serde-codec", "std"] } | ||
thiserror = "1.0" | ||
anyhow = "1.0.71" | ||
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" } | ||
fvm_ipld_blockstore = { version = "0.2", path = "../blockstore" } | ||
# multihash is also re-exported by `cid`. Having `multihash` here as a | ||
# depdendency is needed to enable the features of the re-export. | ||
multihash = { workspace = true, features = ["blake2b", "multihash-impl"] } | ||
|
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 = "fvm_ipld_hamt" | ||
description = "Sharded IPLD HashMap implementation." | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
edition = "2021" | ||
|
@@ -18,8 +18,8 @@ once_cell = "1.18" | |
forest_hash_utils = "0.1" | ||
anyhow = "1.0.71" | ||
libipld-core = { version = "0.16.0", features = ["serde-codec"] } | ||
fvm_ipld_encoding = { version = "0.3", path = "../encoding" } | ||
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" } | ||
fvm_ipld_encoding = { version = "0.4", path = "../encoding" } | ||
fvm_ipld_blockstore = { version = "0.2", path = "../blockstore" } | ||
|
||
[features] | ||
identity = [] | ||
|
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 = "fvm_ipld_kamt" | ||
description = "Sharded IPLD Map implementation with level skipping." | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
edition = "2021" | ||
|
@@ -16,8 +16,8 @@ thiserror = "1.0" | |
once_cell = "1.18" | ||
forest_hash_utils = "0.1" | ||
anyhow = "1.0.71" | ||
fvm_ipld_encoding = { version = "0.3", path = "../encoding" } | ||
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" } | ||
fvm_ipld_encoding = { version = "0.4", path = "../encoding" } | ||
fvm_ipld_blockstore = { version = "0.2", path = "../blockstore" } | ||
|
||
[features] | ||
# This feature should just be used for testing (ignoring links that don't exist in store) | ||
|
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 = "fvm_shared" | ||
description = "Filecoin Virtual Machine shared types and functions" | ||
version = "3.3.1" | ||
version = "3.4.0" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"] | ||
|
@@ -21,7 +21,7 @@ cid = { workspace = true, features = ["serde-codec", "std"] } | |
multihash = { workspace = true, features = ["multihash-impl", "sha2", "sha3", "ripemd"] } | ||
unsigned-varint = "0.7.1" | ||
anyhow = "1.0.71" | ||
fvm_ipld_encoding = { version = "0.3", path = "../ipld/encoding" } | ||
fvm_ipld_encoding = { version = "0.4", path = "../ipld/encoding" } | ||
serde = { version = "1", default-features = false } | ||
serde_tuple = "0.5" | ||
arbitrary = { version = "1.3", optional = true, features = ["derive"] } | ||
|
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
Oops, something went wrong.