-
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.
* some refactoring * tree to tree node * removed just in time updates from commit time * more work * more work * removed a comma * added a callback method to be able to get the value defined costs * more fixes * grovedb working again * fixed proof feature * fixed bench * clippy fixes * fmt fixes * updated to rc2 * updated caching system * removed cache * readded cache * merge
- Loading branch information
1 parent
75b4df1
commit 5bed4f5
Showing
74 changed files
with
3,189 additions
and
2,196 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 was deleted.
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
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 = "1.0.0-rc.1" | ||
version = "1.0.0-rc.2" | ||
authors = ["Samuel Westrich <[email protected]>", "Wisdom Ogwu <[email protected]", "Evgeny Fomin <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -12,21 +12,21 @@ documentation = "https://docs.rs/grovedb" | |
|
||
|
||
[dependencies] | ||
grovedb-merk = { version = "1.0.0-rc.1", path = "../merk", optional = true, default-features = false } | ||
grovedb-merk = { version = "1.0.0-rc.2", path = "../merk", optional = true, default-features = false } | ||
thiserror = { version = "1.0.37", optional = true } | ||
tempfile = { version = "3.3.0", optional = true } | ||
bincode = { version = "1.3.3", optional = true } | ||
serde = { version = "1.0.149", optional = true } | ||
grovedb-storage = { version = "1.0.0-rc.1", path = "../storage", optional = true } | ||
grovedb-visualize = { version = "1.0.0-rc.1", path = "../visualize", optional = true } | ||
grovedb-storage = { version = "1.0.0-rc.2", path = "../storage", optional = true } | ||
grovedb-visualize = { version = "1.0.0-rc.2", path = "../visualize", optional = true } | ||
hex = { version = "0.4.3", optional = true } | ||
itertools = { version = "0.10.5", optional = true } | ||
integer-encoding = { version = "3.0.4", optional = true } | ||
grovedb-costs = { version = "1.0.0-rc.1", path = "../costs", optional = true } | ||
grovedb-costs = { version = "1.0.0-rc.2", path = "../costs", optional = true } | ||
nohash-hasher = { version = "0.2.0", optional = true } | ||
indexmap = { version = "1.9.2", optional = true } | ||
intmap = { version = "2.0.0", optional = true } | ||
grovedb-path = { version = "1.0.0-rc.1", path = "../path" } | ||
grovedb-path = { version = "1.0.0-rc.2", path = "../path" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
|
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.