diff --git a/heed-traits/Cargo.toml b/heed-traits/Cargo.toml index 2ccffee8..97397d4a 100644 --- a/heed-traits/Cargo.toml +++ b/heed-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heed-traits" -version = "0.7.0" +version = "0.20.0-alpha.0" authors = ["Kerollmops "] description = "The traits used inside of the fully typed LMDB wrapper, heed" license = "MIT" diff --git a/heed-types/Cargo.toml b/heed-types/Cargo.toml index e7acc654..5cc2c1b4 100644 --- a/heed-types/Cargo.toml +++ b/heed-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heed-types" -version = "0.7.2" +version = "0.20.0-alpha.0" authors = ["Kerollmops "] description = "The types used with the fully typed LMDB wrapper, heed" license = "MIT" @@ -12,7 +12,7 @@ edition = "2021" bincode = { version = "1.3.3", optional = true } bytemuck = { version = "1.12.3", features = ["extern_crate_alloc", "extern_crate_std"] } byteorder = "1.4.3" -heed-traits = { version = "0.7.0", path = "../heed-traits" } +heed-traits = { version = "0.20.0-alpha.0", path = "../heed-traits" } serde = { version = "1.0.151", optional = true } serde_json = { version = "1.0.91", optional = true } diff --git a/heed/Cargo.toml b/heed/Cargo.toml index d16e1957..af499399 100644 --- a/heed/Cargo.toml +++ b/heed/Cargo.toml @@ -13,8 +13,8 @@ edition = "2021" [dependencies] bytemuck = "1.12.3" byteorder = { version = "1.4.3", default-features = false } -heed-traits = { version = "0.7.0", path = "../heed-traits" } -heed-types = { version = "0.7.2", path = "../heed-types" } +heed-traits = { version = "0.20.0-alpha.0", path = "../heed-traits" } +heed-types = { version = "0.20.0-alpha.0", path = "../heed-types" } libc = "0.2.139" lmdb-master-sys = { version = "0.1.0", path = "../lmdb-master-sys" } once_cell = "1.16.0"