diff --git a/costs/Cargo.toml b/costs/Cargo.toml index 583724374..3ec1b9ba7 100644 --- a/costs/Cargo.toml +++ b/costs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "costs" -version = "0.0.0" +version = "1.0.0" edition = "2021" publish = false diff --git a/grovedb/Cargo.toml b/grovedb/Cargo.toml index 527be25b2..f36dabf94 100644 --- a/grovedb/Cargo.toml +++ b/grovedb/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "grovedb" description = "Fully featured database using balanced hierarchical authenticated data structures" -version = "0.8.1" +version = "0.8.2" authors = ["Samuel Westrich ", "Wisdom Ogwu "] edition = "2021" license = "MIT" @@ -18,7 +18,7 @@ visualize = { path = "../visualize" } hex = "0.4.3" itertools = { version = "0.10.5" } integer-encoding = "3.0.4" -costs = { version = "0.0.0", path = "../costs" } +costs = { version = "1.0.0", path = "../costs" } nohash-hasher = "0.2.0" indexmap = "1.9.2" intmap = "2.0.0" diff --git a/merk/Cargo.toml b/merk/Cargo.toml index bbf9018c0..75fcd5cce 100644 --- a/merk/Cargo.toml +++ b/merk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "merk" description = "Merkle key/value store adapted for GroveDB" -version = "0.8.1" +version = "0.8.2" authors = ["Samuel Westrich ", "Wisdom Ogwu ", "Matt Bell "] edition = "2021" license = "MIT" diff --git a/storage/Cargo.toml b/storage/Cargo.toml index f2f2e18b0..913083d4d 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "storage" -version = "0.2.0" +version = "1.0.0" edition = "2021" [dependencies] @@ -11,7 +11,7 @@ blake3 = { version = "1.3.3", optional = true } integer-encoding = { version = "3.0.4", optional = true } visualize = { path = "../visualize" } strum = { version = "0.24.1", features = ["derive"] } -costs = { version = "0.0.0", path = "../costs" } +costs = { version = "1.0.0", path = "../costs" } thiserror = "1.0.37" rocksdb = { version = "0.19.0", optional = true } hex = "0.4.3"