From b7a4877afa6b26c63b80693918c73d4bb9fb2ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Wed, 21 Aug 2024 12:25:25 +0200 Subject: [PATCH] Prepare the heed3 crates to be published on crates.io --- heed-master3-proc-macro/Cargo.toml | 3 +++ heed3/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/heed-master3-proc-macro/Cargo.toml b/heed-master3-proc-macro/Cargo.toml index e8d7a76a..d41973b3 100644 --- a/heed-master3-proc-macro/Cargo.toml +++ b/heed-master3-proc-macro/Cargo.toml @@ -1,5 +1,8 @@ [package] name = "heed-master3-proc-macro" +authors = ["Kerollmops "] +description = "A proc macro to simplify the maintenance of the heed and heed3 crates" +license = "MIT" version = "0.1.0" edition = "2021" diff --git a/heed3/Cargo.toml b/heed3/Cargo.toml index b6ebae5c..d023d9a7 100644 --- a/heed3/Cargo.toml +++ b/heed3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heed3" -version = "0.20.5" +version = "0.20.5-beta.1" authors = ["Kerollmops "] 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"