Skip to content

Commit

Permalink
Bump heed to v0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Apr 25, 2024
1 parent 036ac23 commit d9981f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion heed-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heed-traits"
version = "0.20.0-alpha.9"
version = "0.20.0"
authors = ["Kerollmops <[email protected]>"]
description = "The traits used inside of the fully typed LMDB wrapper, heed"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions heed-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heed-types"
version = "0.20.0-alpha.9"
version = "0.20.0"
authors = ["Kerollmops <[email protected]>"]
description = "The types used with the fully typed LMDB wrapper, heed"
license = "MIT"
Expand All @@ -11,7 +11,7 @@ edition = "2021"
[dependencies]
bincode = { version = "1.3.3", optional = true }
byteorder = "1.4.3"
heed-traits = { version = "0.20.0-alpha.9", path = "../heed-traits" }
heed-traits = { version = "0.20.0", path = "../heed-traits" }
serde = { version = "1.0.151", optional = true }
serde_json = { version = "1.0.91", optional = true }
rmp-serde = { version = "1.1.2", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions heed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heed"
version = "0.20.0-alpha.9"
version = "0.20.0"
authors = ["Kerollmops <[email protected]>"]
description = "A fully typed LMDB wrapper with minimum overhead"
license = "MIT"
Expand All @@ -13,8 +13,8 @@ edition = "2021"
[dependencies]
bitflags = { version = "2.3.3", features = ["serde"] }
byteorder = { version = "1.4.3", default-features = false }
heed-traits = { version = "0.20.0-alpha.9", path = "../heed-traits" }
heed-types = { version = "0.20.0-alpha.9", default-features = false, path = "../heed-types" }
heed-traits = { version = "0.20.0", path = "../heed-traits" }
heed-types = { version = "0.20.0", default-features = false, path = "../heed-types" }
libc = "0.2.139"
lmdb-master-sys = { version = "0.1.0", path = "../lmdb-master-sys" }
once_cell = "1.16.0"
Expand Down

0 comments on commit d9981f5

Please sign in to comment.