diff --git a/Cargo.lock b/Cargo.lock index e86eecc..398597e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,7 +153,7 @@ dependencies = [ [[package]] name = "micromap" -version = "0.0.0" +version = "0.0.9" dependencies = [ "anyhow", "bincode", diff --git a/Cargo.toml b/Cargo.toml index bdba0ab..42a2f15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "micromap" -version = "0.0.0" +version = "0.0.9" 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 2c076e9..274cf39 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.9")] #![deny(warnings)] #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] #![allow(clippy::multiple_inherent_impl)]