From 8cd4c92b573dee90ef8ecbcd377c771d35ee7396 Mon Sep 17 00:00:00 2001 From: rultor Date: Thu, 20 Apr 2023 06:16:53 +0000 Subject: [PATCH] 0.0.5 --- 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 0a56b86..172fbab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "micromap" -version = "0.0.0" +version = "0.0.5" dependencies = [ "anyhow", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 3c274cf..4aedf4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "micromap" -version = "0.0.0" +version = "0.0.5" 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..ac90729 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.5")] #![deny(warnings)] #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] #![allow(clippy::multiple_inherent_impl)]