Skip to content

Commit

Permalink
updated to rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Sep 27, 2023
1 parent 89628d7 commit 78fcce0
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
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 = "1.0.0-rc.1"
version = "1.0.0-rc.2"
edition = "2021"
license = "MIT"
description = "Costs extension crate for GroveDB"
Expand Down
12 changes: 6 additions & 6 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 = "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"
Expand All @@ -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"
Expand Down
10 changes: 5 additions & 5 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 = "1.0.0-rc.1"
version = "1.0.0-rc.2"
authors = ["Samuel Westrich <[email protected]>", "Wisdom Ogwu <[email protected]", "Evgeny Fomin <[email protected]>", "Matt Bell <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -12,13 +12,13 @@ documentation = "https://docs.rs/grovedb-merk"

[dependencies]
thiserror = "1.0.37"
grovedb-storage = { version = "1.0.0-rc.1", path = "../storage", optional = true }
grovedb-storage = { version = "1.0.0-rc.2", path = "../storage", optional = true }
failure = "0.1.8"
integer-encoding = "3.0.4"
indexmap = "1.9.2"
grovedb-costs = { version = "1.0.0-rc.1", path = "../costs" }
grovedb-visualize = { version = "1.0.0-rc.1", path = "../visualize" }
grovedb-path = { version = "1.0.0-rc.1", path = "../path" }
grovedb-costs = { version = "1.0.0-rc.2", path = "../costs" }
grovedb-visualize = { version = "1.0.0-rc.2", path = "../visualize" }
grovedb-path = { version = "1.0.0-rc.2", path = "../path" }

[dependencies.time]
version = "0.3.17"
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 = "1.0.0-rc.1"
version = "1.0.0-rc.2"
edition = "2021"
license = "MIT"
description = "Path extension crate for GroveDB"
Expand Down
8 changes: 4 additions & 4 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-storage"
version = "1.0.0-rc.1"
version = "1.0.0-rc.2"
edition = "2021"
license = "MIT"
description = "Storage extension crate for GroveDB"
Expand All @@ -14,13 +14,13 @@ num_cpus = { version = "1.14.0", optional = true }
tempfile = { version = "3.3.0", optional = true }
blake3 = { version = "1.3.3", optional = true }
integer-encoding = { version = "3.0.4", optional = true }
grovedb-visualize = { version = "1.0.0-rc.1", path = "../visualize" }
grovedb-visualize = { version = "1.0.0-rc.2", path = "../visualize" }
strum = { version = "0.24.1", features = ["derive"] }
grovedb-costs = { version = "1.0.0-rc.1", path = "../costs" }
grovedb-costs = { version = "1.0.0-rc.2", path = "../costs" }
thiserror = "1.0.37"
rocksdb = { version = "0.21.0", optional = true }
hex = "0.4.3"
grovedb-path = { version = "1.0.0-rc.1", path = "../path" }
grovedb-path = { version = "1.0.0-rc.2", path = "../path" }

[features]
rocksdb_storage = ["rocksdb", "num_cpus", "lazy_static", "tempfile", "blake3", "integer-encoding"]
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 = "1.0.0-rc.1"
version = "1.0.0-rc.2"
edition = "2021"
license = "MIT"
description = "Visualizer extension crate for GroveDB"
Expand Down

0 comments on commit 78fcce0

Please sign in to comment.