-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use common workspace package stanza & workspace dependencies.
This requires us to upgrade our MSRV to 1.64
- Loading branch information
Showing
8 changed files
with
55 additions
and
31 deletions.
There are no files selected for viewing
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,25 +1,25 @@ | ||
[package] | ||
name = "bridgetree" | ||
description = "A space-efficient Merkle tree designed for linear appends with witnessing of marked leaves, checkpointing & state restoration." | ||
version = "0.5.0" | ||
authors = [ | ||
"Kris Nuttycombe <kris@nutty.land>", | ||
"Sean Bowe <ewillbefull@gmail.com>", | ||
] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
description = "A space-efficient Merkle tree designed for linear appends with witnessing of marked leaves, checkpointing & state restoration." | ||
homepage = "https://github.com/zcash/incrementalmerkletree" | ||
repository = "https://github.com/zcash/incrementalmerkletree" | ||
categories = ["algorithms", "data-structures"] | ||
rust-version = "1.60" | ||
edition.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
categories.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
incrementalmerkletree = { version = "0.6", path = "../incrementalmerkletree" } | ||
proptest = { version = "1.0.0", optional = true } | ||
incrementalmerkletree.workspace = true | ||
proptest = { workspace = true, optional = true } | ||
|
||
[dev-dependencies] | ||
incrementalmerkletree = { version = "0.6", path = "../incrementalmerkletree", features = ["test-dependencies"] } | ||
proptest = "1.0.0" | ||
incrementalmerkletree = { workspace = true, features = ["test-dependencies"] } | ||
proptest.workspace = true | ||
|
||
[features] | ||
test-dependencies = ["proptest"] |
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,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.60.0" | ||
channel = "1.64.0" | ||
components = [ "clippy", "rustfmt" ] |
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