Skip to content
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

chore: bump crate versions #341

Merged
merged 1 commit into from
Oct 3, 2024
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
2 changes: 1 addition & 1 deletion costs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-costs"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "MIT"
description = "Costs extension crate for GroveDB"
Expand Down
11 changes: 6 additions & 5 deletions grovedb-epoch-based-storage-flags/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
name = "grovedb-epoch-based-storage-flags"
authors = ["Samuel Westrich <sam@dash.org>"]
description = "Epoch based storage flags for GroveDB"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/dashpay/grovedb"

[dependencies]
thiserror = { version = "1.0.63" }
grovedb-costs = { version = "2.0.3", path = "../costs" }
intmap = { version = "2.0.0", features = ["serde"]}
grovedb-costs = { version = "2.1.0", path = "../costs" }

hex = { version = "0.4.3" }
integer-encoding = { version = "4.0.0" }
hex = { version = "0.4.3" }
intmap = { version = "2.0.0", features = ["serde"]}
thiserror = { version = "1.0.63" }
2 changes: 1 addition & 1 deletion grovedb-version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "grovedb-version"
authors = ["Samuel Westrich <sam@dash.org>"]
description = "Versioning library for Platform"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/dashpay/grovedb"
Expand Down
42 changes: 22 additions & 20 deletions grovedb/Cargo.toml
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.3"
version = "2.1.0"
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>"]
edition = "2021"
license = "MIT"
Expand All @@ -11,37 +11,39 @@ readme = "../README.md"
documentation = "https://docs.rs/grovedb"

[dependencies]
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 }
grovedb-costs = { version = "2.1.0", path = "../costs" , optional = true }
grovedbg-types = { version = "2.1.0", path = "../grovedbg-types", optional = true }
grovedb-merk = { version = "2.1.0", path = "../merk", optional = true, default-features = false }
grovedb-path = { version = "2.1.0", path = "../path" }
grovedb-storage = { version = "2.1.0", path = "../storage", optional = true }
grovedb-version = { version = "2.1.0", path = "../grovedb-version" }
grovedb-visualize = { version = "2.1.0", path = "../visualize", optional = true }

axum = { version = "0.7.5", features = ["macros"], optional = true }
bincode = { version = "2.0.0-rc.3" }
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 }
bitvec = "1"
blake3 = "1.4.0"
derive_more = "0.99.18"
integer-encoding = { version = "4.0.0", optional = true }
grovedb-costs = { version = "2.0.3", path = "../costs" , optional = true }
nohash-hasher = { version = "0.2.0", optional = true }
hex = "0.4.3"
indexmap = "2.2.6"
integer-encoding = { version = "4.0.0", optional = true }
intmap = { version = "2.0.0", optional = true }
grovedb-path = { version = "2.0.3", path = "../path" }
grovedbg-types = { version = "2.0.3", path = "../grovedbg-types", optional = true }
itertools = { version = "0.12.1", optional = true }
nohash-hasher = { version = "0.2.0", optional = true }
tempfile = { version = "3.10.1", optional = true }
thiserror = { version = "1.0.59", optional = true }
tokio-util = { version = "0.7.12", optional = true }
tokio = { version = "1.40.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.3" }
tokio-util = { version = "0.7.12", optional = true }

[dev-dependencies]
rand = "0.8.5"
grovedb-epoch-based-storage-flags = { version = "2.1.0", path = "../grovedb-epoch-based-storage-flags" }

criterion = "0.5.1"
hex = "0.4.3"
pretty_assertions = "1.4.0"
grovedb-epoch-based-storage-flags = { version = "2.0.3", path = "../grovedb-epoch-based-storage-flags" }
rand = "0.8.5"

[[bench]]
name = "insertion_benchmark"
Expand Down
2 changes: 1 addition & 1 deletion grovedbg-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedbg-types"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
description = "Common type definitions for data exchange over GroveDBG protocol"
authors = ["Evgeny Fomin <evgeny.fomin@dash.org>"]
Expand Down
19 changes: 10 additions & 9 deletions merk/Cargo.toml
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.3"
version = "2.1.0"
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>", "Matt Bell <mappum@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -11,17 +11,18 @@ readme = "README.md"
documentation = "https://docs.rs/grovedb-merk"

[dependencies]
thiserror = "1.0.58"
grovedb-costs = { version = "2.1.0" , path = "../costs" }
grovedb-path = { version = "2.1.0", path = "../path" }
grovedb-storage = { version = "2.1.0", path = "../storage", optional = true }
grovedb-version = { version = "2.1.0", path = "../grovedb-version" }
grovedb-visualize = { version = "2.1.0", path = "../visualize" }

bincode = { version = "2.0.0-rc.3" }
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.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.3", path = "../grovedb-version" }
indexmap = "2.2.6"
integer-encoding = "4.0.0"
thiserror = "1.0.58"

[dependencies.time]
version = "0.3.34"
Expand Down
4 changes: 2 additions & 2 deletions node-grove/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ exclude = ["index.node"]
crate-type = ["cdylib"]

[dependencies]
grovedb = { path = "../grovedb", features = ["full", "estimated_costs"] }
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }
grovedb = { version = "2.1.0", path = "../grovedb", features = ["full", "estimated_costs"] }
grovedb-version = { version = "2.1.0", path = "../grovedb-version" }

[dependencies.neon]
version = "0.10.1"
Expand Down
2 changes: 1 addition & 1 deletion path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-path"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "MIT"
description = "Path extension crate for GroveDB"
Expand Down
19 changes: 10 additions & 9 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-storage"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "MIT"
description = "Storage extension crate for GroveDB"
Expand All @@ -9,18 +9,19 @@ documentation = "https://docs.rs/grovedb-storage"
repository = "https://github.com/dashpay/grovedb"

[dependencies]
lazy_static = { version = "1.4.0", optional = true }
num_cpus = { version = "1.16.0", optional = true }
tempfile = { version = "3.10.1", optional = true }
grovedb-costs = { version = "2.1.0", path = "../costs" }
grovedb-path = { version = "2.1.0", path = "../path" }
grovedb-visualize = { version = "2.1.0", path = "../visualize" }

blake3 = { version = "1.5.1", optional = true }
hex = "0.4.3"
integer-encoding = { version = "4.0.0", optional = true }
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
lazy_static = { version = "1.4.0", optional = true }
num_cpus = { version = "1.16.0", optional = true }
rocksdb = { version = "0.22.0", optional = true }
strum = { version = "0.26.2", features = ["derive"] }
grovedb-costs = { version = "2.0.3", path = "../costs" }
tempfile = { version = "3.10.1", optional = true }
thiserror = "1.0.59"
rocksdb = { version = "0.22.0", optional = true }
hex = "0.4.3"
grovedb-path = { version = "2.0.3", path = "../path" }

[features]
rocksdb_storage = ["rocksdb", "num_cpus", "lazy_static", "tempfile", "blake3", "integer-encoding"]
10 changes: 4 additions & 6 deletions tutorials/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ version = "0.1.0"
edition = "2021"
default-run = "tutorials"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
#grovedb = { git = "https://github.com/dashpay/grovedb.git" }
grovedb = { path = "../grovedb" }
grovedb-merk = { path = "../merk" }
grovedb = { path = "../grovedb" }
grovedb-path = { path = "../path" }
grovedb-storage = { path = "../storage" }
grovedb-visualize = { path = "../visualize" }
grovedb-version = { path = "../grovedb-version" }
grovedb-path = { path = "../path" }
grovedb-visualize = { path = "../visualize" }

rand = "0.8.5"
hex = "0.4"

Expand Down
2 changes: 1 addition & 1 deletion visualize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-visualize"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "MIT"
description = "Debug prints extension crate for GroveDB"
Expand Down
Loading