Skip to content

Commit cb6bd60

Browse files
authored
bump crate versions (#341)
1 parent e813cad commit cb6bd60

File tree

11 files changed

+59
-56
lines changed

11 files changed

+59
-56
lines changed

costs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedb-costs"
3-
version = "2.0.3"
3+
version = "2.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Costs extension crate for GroveDB"

grovedb-epoch-based-storage-flags/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
name = "grovedb-epoch-based-storage-flags"
33
authors = ["Samuel Westrich <sam@dash.org>"]
44
description = "Epoch based storage flags for GroveDB"
5-
version = "2.0.3"
5+
version = "2.1.0"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"
99

1010
[dependencies]
11-
thiserror = { version = "1.0.63" }
12-
grovedb-costs = { version = "2.0.3", path = "../costs" }
13-
intmap = { version = "2.0.0", features = ["serde"]}
11+
grovedb-costs = { version = "2.1.0", path = "../costs" }
12+
13+
hex = { version = "0.4.3" }
1414
integer-encoding = { version = "4.0.0" }
15-
hex = { version = "0.4.3" }
15+
intmap = { version = "2.0.0", features = ["serde"]}
16+
thiserror = { version = "1.0.63" }

grovedb-version/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "grovedb-version"
33
authors = ["Samuel Westrich <sam@dash.org>"]
44
description = "Versioning library for Platform"
5-
version = "2.0.3"
5+
version = "2.1.0"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"

grovedb/Cargo.toml

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grovedb"
33
description = "Fully featured database using balanced hierarchical authenticated data structures"
4-
version = "2.0.3"
4+
version = "2.1.0"
55
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>"]
66
edition = "2021"
77
license = "MIT"
@@ -11,37 +11,39 @@ readme = "../README.md"
1111
documentation = "https://docs.rs/grovedb"
1212

1313
[dependencies]
14-
grovedb-merk = { version = "2.0.3", path = "../merk", optional = true, default-features = false }
15-
thiserror = { version = "1.0.59", optional = true }
16-
tempfile = { version = "3.10.1", optional = true }
14+
grovedb-costs = { version = "2.1.0", path = "../costs" , optional = true }
15+
grovedbg-types = { version = "2.1.0", path = "../grovedbg-types", optional = true }
16+
grovedb-merk = { version = "2.1.0", path = "../merk", optional = true, default-features = false }
17+
grovedb-path = { version = "2.1.0", path = "../path" }
18+
grovedb-storage = { version = "2.1.0", path = "../storage", optional = true }
19+
grovedb-version = { version = "2.1.0", path = "../grovedb-version" }
20+
grovedb-visualize = { version = "2.1.0", path = "../visualize", optional = true }
21+
22+
axum = { version = "0.7.5", features = ["macros"], optional = true }
1723
bincode = { version = "2.0.0-rc.3" }
18-
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true }
19-
grovedb-visualize = { version = "2.0.3", path = "../visualize", optional = true }
20-
hex = "0.4.3"
21-
itertools = { version = "0.12.1", optional = true }
24+
bitvec = "1"
25+
blake3 = "1.4.0"
2226
derive_more = "0.99.18"
23-
integer-encoding = { version = "4.0.0", optional = true }
24-
grovedb-costs = { version = "2.0.3", path = "../costs" , optional = true }
25-
nohash-hasher = { version = "0.2.0", optional = true }
27+
hex = "0.4.3"
2628
indexmap = "2.2.6"
29+
integer-encoding = { version = "4.0.0", optional = true }
2730
intmap = { version = "2.0.0", optional = true }
28-
grovedb-path = { version = "2.0.3", path = "../path" }
29-
grovedbg-types = { version = "2.0.3", path = "../grovedbg-types", optional = true }
31+
itertools = { version = "0.12.1", optional = true }
32+
nohash-hasher = { version = "0.2.0", optional = true }
33+
tempfile = { version = "3.10.1", optional = true }
34+
thiserror = { version = "1.0.59", optional = true }
35+
tokio-util = { version = "0.7.12", optional = true }
3036
tokio = { version = "1.40.0", features = ["rt-multi-thread", "net"], optional = true }
31-
axum = { version = "0.7.5", features = ["macros"], optional = true }
3237
tower-http = { version = "0.5.2", features = ["fs"], optional = true }
33-
blake3 = "1.4.0"
34-
bitvec = "1"
3538
zip-extensions = { version ="0.6.2", optional = true }
36-
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }
37-
tokio-util = { version = "0.7.12", optional = true }
3839

3940
[dev-dependencies]
40-
rand = "0.8.5"
41+
grovedb-epoch-based-storage-flags = { version = "2.1.0", path = "../grovedb-epoch-based-storage-flags" }
42+
4143
criterion = "0.5.1"
4244
hex = "0.4.3"
4345
pretty_assertions = "1.4.0"
44-
grovedb-epoch-based-storage-flags = { version = "2.0.3", path = "../grovedb-epoch-based-storage-flags" }
46+
rand = "0.8.5"
4547

4648
[[bench]]
4749
name = "insertion_benchmark"

grovedbg-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedbg-types"
3-
version = "2.0.3"
3+
version = "2.1.0"
44
edition = "2021"
55
description = "Common type definitions for data exchange over GroveDBG protocol"
66
authors = ["Evgeny Fomin <evgeny.fomin@dash.org>"]

merk/Cargo.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grovedb-merk"
33
description = "Merkle key/value store adapted for GroveDB"
4-
version = "2.0.3"
4+
version = "2.1.0"
55
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>", "Matt Bell <mappum@gmail.com>"]
66
edition = "2021"
77
license = "MIT"
@@ -11,17 +11,18 @@ readme = "README.md"
1111
documentation = "https://docs.rs/grovedb-merk"
1212

1313
[dependencies]
14-
thiserror = "1.0.58"
14+
grovedb-costs = { version = "2.1.0" , path = "../costs" }
15+
grovedb-path = { version = "2.1.0", path = "../path" }
16+
grovedb-storage = { version = "2.1.0", path = "../storage", optional = true }
17+
grovedb-version = { version = "2.1.0", path = "../grovedb-version" }
18+
grovedb-visualize = { version = "2.1.0", path = "../visualize" }
19+
1520
bincode = { version = "2.0.0-rc.3" }
16-
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true }
1721
failure = "0.1.8"
18-
integer-encoding = "4.0.0"
19-
indexmap = "2.2.6"
20-
grovedb-costs = { version = "2.0.3" , path = "../costs" }
21-
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
22-
grovedb-path = { version = "2.0.3", path = "../path" }
2322
hex = "0.4.3"
24-
grovedb-version = { version = "2.0.3", path = "../grovedb-version" }
23+
indexmap = "2.2.6"
24+
integer-encoding = "4.0.0"
25+
thiserror = "1.0.58"
2526

2627
[dependencies.time]
2728
version = "0.3.34"

node-grove/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ exclude = ["index.node"]
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
grovedb = { path = "../grovedb", features = ["full", "estimated_costs"] }
14-
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }
13+
grovedb = { version = "2.1.0", path = "../grovedb", features = ["full", "estimated_costs"] }
14+
grovedb-version = { version = "2.1.0", path = "../grovedb-version" }
1515

1616
[dependencies.neon]
1717
version = "0.10.1"

path/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedb-path"
3-
version = "2.0.3"
3+
version = "2.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Path extension crate for GroveDB"

storage/Cargo.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedb-storage"
3-
version = "2.0.3"
3+
version = "2.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Storage extension crate for GroveDB"
@@ -9,18 +9,19 @@ documentation = "https://docs.rs/grovedb-storage"
99
repository = "https://github.com/dashpay/grovedb"
1010

1111
[dependencies]
12-
lazy_static = { version = "1.4.0", optional = true }
13-
num_cpus = { version = "1.16.0", optional = true }
14-
tempfile = { version = "3.10.1", optional = true }
12+
grovedb-costs = { version = "2.1.0", path = "../costs" }
13+
grovedb-path = { version = "2.1.0", path = "../path" }
14+
grovedb-visualize = { version = "2.1.0", path = "../visualize" }
15+
1516
blake3 = { version = "1.5.1", optional = true }
17+
hex = "0.4.3"
1618
integer-encoding = { version = "4.0.0", optional = true }
17-
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
19+
lazy_static = { version = "1.4.0", optional = true }
20+
num_cpus = { version = "1.16.0", optional = true }
21+
rocksdb = { version = "0.22.0", optional = true }
1822
strum = { version = "0.26.2", features = ["derive"] }
19-
grovedb-costs = { version = "2.0.3", path = "../costs" }
23+
tempfile = { version = "3.10.1", optional = true }
2024
thiserror = "1.0.59"
21-
rocksdb = { version = "0.22.0", optional = true }
22-
hex = "0.4.3"
23-
grovedb-path = { version = "2.0.3", path = "../path" }
2425

2526
[features]
2627
rocksdb_storage = ["rocksdb", "num_cpus", "lazy_static", "tempfile", "blake3", "integer-encoding"]

tutorials/Cargo.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ version = "0.1.0"
44
edition = "2021"
55
default-run = "tutorials"
66

7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8-
97
[dependencies]
10-
#grovedb = { git = "https://github.com/dashpay/grovedb.git" }
11-
grovedb = { path = "../grovedb" }
128
grovedb-merk = { path = "../merk" }
9+
grovedb = { path = "../grovedb" }
10+
grovedb-path = { path = "../path" }
1311
grovedb-storage = { path = "../storage" }
14-
grovedb-visualize = { path = "../visualize" }
1512
grovedb-version = { path = "../grovedb-version" }
16-
grovedb-path = { path = "../path" }
13+
grovedb-visualize = { path = "../visualize" }
14+
1715
rand = "0.8.5"
1816
hex = "0.4"
1917

0 commit comments

Comments
 (0)