Skip to content

Version Hamt, Amt, State tree #887

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

Merged
merged 10 commits into from
Dec 14, 2020
Merged
Show file tree
Hide file tree
Changes from all 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
101 changes: 61 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ members = [
"utils/genesis",
"utils/net_utils",
"utils/statediff",
"utils/hash_utils",
"types",
"key_management",
]
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ clean:
@cargo clean -p message_pool
@cargo clean -p genesis
@cargo clean -p actor_interface
@cargo clean -p forest_hash_utils
@echo "Done cleaning."

lint: license clean
Expand Down
1 change: 1 addition & 0 deletions ipld/amt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "ipld_amt"
description = "Sharded IPLD Array implementation."
# TODO bump the major version when releasing v2 actors
version = "0.2.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>"]
Expand Down
4 changes: 3 additions & 1 deletion ipld/hamt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "ipld_hamt"
description = "Sharded IPLD HashMap implementation."
version = "0.2.0"
# TODO bump the major version when releasing v2 actors
version = "0.1.1"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>"]
edition = "2018"
Expand All @@ -19,6 +20,7 @@ serde_bytes = { package = "cs_serde_bytes", version = "0.12" }
thiserror = "1.0"
sha2 = "0.9.1"
lazycell = "1.2.1"
forest_hash_utils = "0.1"

[features]
identity = []
Expand Down
Loading