From 3be75da0dce687298a36f3e6f54f38fe147b6ca9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 17 Dec 2022 11:04:39 -0800 Subject: [PATCH] Release 0.3.24 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ea61ec8..e33a614 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erased-serde" -version = "0.3.23" +version = "0.3.24" authors = ["David Tolnay "] categories = ["encoding", "rust-patterns", "no-std"] description = "Type-erased Serialize and Serializer traits" diff --git a/src/lib.rs b/src/lib.rs index ba01ad8..114a14b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -95,7 +95,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/erased-serde/0.3.23")] +#![doc(html_root_url = "https://docs.rs/erased-serde/0.3.24")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))] #![cfg_attr(no_unsafe_op_in_unsafe_fn_lint, allow(unused_unsafe))]