From a3cf3484f7b8f3851e3c710e4c92607d7f6766a7 Mon Sep 17 00:00:00 2001 From: rultor Date: Sat, 22 Apr 2023 09:53:21 +0000 Subject: [PATCH] 0.0.6 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21140f3..54f9fc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,7 +119,7 @@ dependencies = [ [[package]] name = "micromap" -version = "0.0.0" +version = "0.0.6" dependencies = [ "anyhow", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 8b3a94c..57e7ff4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "micromap" -version = "0.0.0" +version = "0.0.6" edition = "2021" repository = "https://github.com/yegor256/micromap" description = "A faster alternative to HashMap for super small maps" diff --git a/src/lib.rs b/src/lib.rs index 7995f5b..26205f5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,7 +39,7 @@ //! will have exactly ten elements. An attempt to add an 11th element will lead //! to a panic. -#![doc(html_root_url = "https://docs.rs/micromap/0.0.0")] +#![doc(html_root_url = "https://docs.rs/micromap/0.0.6")] #![deny(warnings)] #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] #![allow(clippy::multiple_inherent_impl)]