diff --git a/Cargo.toml b/Cargo.toml index 8bf2125..a56ae7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-map" -version = "0.9.3" +version = "0.9.4" authors = ["John-John Tedro ", "Peter Jaszkowiak "] edition = "2021" rust-version = "1.72" @@ -21,7 +21,7 @@ default = ["hashbrown", "std"] std = ["serde?/std"] [dependencies] -fixed-map-derive = { version = "=0.9.3", path = "fixed-map-derive" } +fixed-map-derive = { version = "=0.9.4", path = "fixed-map-derive" } hashbrown = { version = "0.13.2", optional = true } serde = { version = "1.0.145", optional = true, default_features = false } diff --git a/README.md b/README.md index d3eaf41..68508fd 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add `fixed-map` to your `Cargo.toml`: ```toml [dependencies] -fixed-map = "0.9.3" +fixed-map = "0.9.4" ``` Anything used as a key in either a [`Map`] or a [`Set`] needs to implement diff --git a/fixed-map-derive/Cargo.toml b/fixed-map-derive/Cargo.toml index 31ff85a..a9bb5f7 100644 --- a/fixed-map-derive/Cargo.toml +++ b/fixed-map-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-map-derive" -version = "0.9.3" +version = "0.9.4" authors = ["John-John Tedro "] edition = "2018" rust-version = "1.72" diff --git a/src/lib.rs b/src/lib.rs index ddbd230..6b8bf6c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ //! //! ```toml //! [dependencies] -//! fixed-map = "0.9.3" +//! fixed-map = "0.9.4" //! ``` //! //! Anything used as a key in either a [`Map`] or a [`Set`] needs to implement