diff --git a/Cargo.toml b/Cargo.toml index 4b50223..d9b3348 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-map" -version = "0.8.3" +version = "0.9.0" authors = ["John-John Tedro ", "Peter Jaszkowiak "] edition = "2021" rust-version = "1.65" @@ -21,7 +21,7 @@ default = ["hashbrown", "std"] std = ["serde?/std"] [dependencies] -fixed-map-derive = { version = "=0.8.3", path = "fixed-map-derive" } +fixed-map-derive = { version = "=0.9.0", 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 3ad962c..cee0d72 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add `fixed-map` to your `Cargo.toml`: ```toml [dependencies] -fixed-map = "0.8.3" +fixed-map = "0.9.0" ``` 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 6e601d6..d917818 100644 --- a/fixed-map-derive/Cargo.toml +++ b/fixed-map-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-map-derive" -version = "0.8.3" +version = "0.9.0" authors = ["John-John Tedro "] edition = "2018" rust-version = "1.65" @@ -22,8 +22,5 @@ syn = { version = "2.0.15", features = ["full"] } quote = "1.0.26" proc-macro2 = "1.0.56" -[dev-dependencies] -fixed-map = { version = "=0.8.3", path = ".." } - [lib] proc-macro = true diff --git a/src/lib.rs b/src/lib.rs index 2259139..f0a6808 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ //! //! ```toml //! [dependencies] -//! fixed-map = "0.8.3" +//! fixed-map = "0.9.0" //! ``` //! //! Anything used as a key in either a [`Map`] or a [`Set`] needs to implement