-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: version bump to v2.0.1 * bump to 2.0.3
- Loading branch information
1 parent
07a53b7
commit c205adb
Showing
10 changed files
with
27 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
name = "grovedb-epoch-based-storage-flags" | ||
authors = ["Samuel Westrich <[email protected]>"] | ||
description = "Epoch based storage flags for GroveDB" | ||
version = "2.0.1" | ||
version = "2.0.3" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/dashpay/grovedb" | ||
|
||
[dependencies] | ||
thiserror = { version = "1.0.63" } | ||
grovedb-costs = { version = "2.0.0", path = "../costs" } | ||
grovedb-costs = { version = "2.0.3", path = "../costs" } | ||
intmap = { version = "2.0.0", features = ["serde"]} | ||
integer-encoding = { version = "4.0.0" } | ||
hex = { version = "0.4.3" } |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "grovedb-version" | ||
authors = ["Samuel Westrich <[email protected]>"] | ||
description = "Versioning library for Platform" | ||
version = "2.0.1" | ||
version = "2.0.3" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/dashpay/grovedb" | ||
|
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 = "grovedb" | ||
description = "Fully featured database using balanced hierarchical authenticated data structures" | ||
version = "2.0.1" | ||
version = "2.0.3" | ||
authors = ["Samuel Westrich <[email protected]>", "Wisdom Ogwu <[email protected]", "Evgeny Fomin <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -11,36 +11,36 @@ readme = "../README.md" | |
documentation = "https://docs.rs/grovedb" | ||
|
||
[dependencies] | ||
grovedb-merk = { version = "2.0.0", path = "../merk", optional = true, default-features = false } | ||
grovedb-merk = { version = "2.0.3", path = "../merk", optional = true, default-features = false } | ||
thiserror = { version = "1.0.59", optional = true } | ||
tempfile = { version = "3.10.1", optional = true } | ||
bincode = { version = "2.0.0-rc.3" } | ||
grovedb-storage = { version = "2.0.0", path = "../storage", optional = true } | ||
grovedb-visualize = { version = "2.0.0", path = "../visualize", optional = true } | ||
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true } | ||
grovedb-visualize = { version = "2.0.3", path = "../visualize", optional = true } | ||
hex = "0.4.3" | ||
itertools = { version = "0.12.1", optional = true } | ||
derive_more = "0.99.18" | ||
integer-encoding = { version = "4.0.0", optional = true } | ||
grovedb-costs = { version = "2.0.0", path = "../costs" , optional = true } | ||
grovedb-costs = { version = "2.0.3", path = "../costs" , optional = true } | ||
nohash-hasher = { version = "0.2.0", optional = true } | ||
indexmap = "2.2.6" | ||
intmap = { version = "2.0.0", optional = true } | ||
grovedb-path = { version = "2.0.0", path = "../path" } | ||
grovedbg-types = { version = "2.0.0", path = "../grovedbg-types", optional = true } | ||
grovedb-path = { version = "2.0.3", path = "../path" } | ||
grovedbg-types = { version = "2.0.3", path = "../grovedbg-types", optional = true } | ||
tokio = { version = "1.37.0", features = ["rt-multi-thread", "net"], optional = true } | ||
axum = { version = "0.7.5", features = ["macros"], optional = true } | ||
tower-http = { version = "0.5.2", features = ["fs"], optional = true } | ||
blake3 = "1.4.0" | ||
bitvec = "1" | ||
zip-extensions = { version ="0.6.2", optional = true } | ||
grovedb-version = { path = "../grovedb-version", version = "2.0.0" } | ||
grovedb-version = { path = "../grovedb-version", version = "2.0.3" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
criterion = "0.5.1" | ||
hex = "0.4.3" | ||
pretty_assertions = "1.4.0" | ||
grovedb-epoch-based-storage-flags = { version = "2.0.0", path = "../grovedb-epoch-based-storage-flags" } | ||
grovedb-epoch-based-storage-flags = { version = "2.0.3", path = "../grovedb-epoch-based-storage-flags" } | ||
|
||
[[bench]] | ||
name = "insertion_benchmark" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "grovedbg-types" | ||
version = "2.0.1" | ||
version = "2.0.3" | ||
edition = "2021" | ||
description = "Common type definitions for data exchange over GroveDBG protocol" | ||
authors = ["Evgeny Fomin <[email protected]>"] | ||
|
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 = "grovedb-merk" | ||
description = "Merkle key/value store adapted for GroveDB" | ||
version = "2.0.1" | ||
version = "2.0.3" | ||
authors = ["Samuel Westrich <[email protected]>", "Wisdom Ogwu <[email protected]", "Evgeny Fomin <[email protected]>", "Matt Bell <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -13,15 +13,15 @@ documentation = "https://docs.rs/grovedb-merk" | |
[dependencies] | ||
thiserror = "1.0.58" | ||
bincode = { version = "2.0.0-rc.3" } | ||
grovedb-storage = { version = "2.0.0", path = "../storage", optional = true } | ||
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true } | ||
failure = "0.1.8" | ||
integer-encoding = "4.0.0" | ||
indexmap = "2.2.6" | ||
grovedb-costs = { version = "2.0.0" , path = "../costs" } | ||
grovedb-visualize = { version = "2.0.0", path = "../visualize" } | ||
grovedb-path = { version = "2.0.0", path = "../path" } | ||
grovedb-costs = { version = "2.0.3" , path = "../costs" } | ||
grovedb-visualize = { version = "2.0.3", path = "../visualize" } | ||
grovedb-path = { version = "2.0.3", path = "../path" } | ||
hex = "0.4.3" | ||
grovedb-version = { version = "2.0.0", path = "../grovedb-version" } | ||
grovedb-version = { version = "2.0.3", path = "../grovedb-version" } | ||
|
||
[dependencies.time] | ||
version = "0.3.34" | ||
|
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