-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare the heed3 crates to be published on crates.io
- Loading branch information
1 parent
9d6f1bf
commit b7a4877
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
[package] | ||
name = "heed-master3-proc-macro" | ||
authors = ["Kerollmops <[email protected]>"] | ||
description = "A proc macro to simplify the maintenance of the heed and heed3 crates" | ||
license = "MIT" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "heed3" | ||
version = "0.20.5" | ||
version = "0.20.5-beta.1" | ||
authors = ["Kerollmops <[email protected]>"] | ||
description = "A fully typed LMDB wrapper with minimum overhead and optional support for encryption" | ||
license = "MIT" | ||
|
@@ -16,7 +16,7 @@ aead = { version = "0.5.1", default-features = false, optional = true } | |
bitflags = { version = "2.6.0", features = ["serde"] } | ||
byteorder = { version = "1.5.0", default-features = false } | ||
generic-array = { version = "0.14.6", features = ["serde"], optional = true } | ||
heed-master3-proc-macro = { path = "../heed-master3-proc-macro", optional = true } | ||
heed-master3-proc-macro = { version = "0.1.0", path = "../heed-master3-proc-macro", optional = true } | ||
heed-traits = { version = "0.20.0", path = "../heed-traits" } | ||
heed-types = { version = "0.20.1", default-features = false, path = "../heed-types" } | ||
libc = "0.2.155" | ||
|