From 7dd27d3febf0f00d0563db4ef04b28f0118cc0ee Mon Sep 17 00:00:00 2001 From: rultor Date: Thu, 27 Apr 2023 07:17:51 +0000 Subject: [PATCH] 0.0.12 --- 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 2354f3c..e79ae84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,7 +79,7 @@ checksum = "3a04a5b2b6f54acba899926491d0a6c59d98012938ca2ab5befb281c034e8f94" [[package]] name = "micromap" -version = "0.0.0" +version = "0.0.12" dependencies = [ "bincode", "hashbrown 0.13.2", diff --git a/Cargo.toml b/Cargo.toml index 72fbf80..45f2d68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "micromap" -version = "0.0.0" +version = "0.0.12" edition = "2021" repository = "https://github.com/yegor256/micromap" description = "The fastest alternative to HashMap, for maps smaller than 20 keys" diff --git a/src/lib.rs b/src/lib.rs index 8d3c63a..6c41b4d 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.12")] #![deny(warnings)] #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] #![allow(clippy::multiple_inherent_impl)]