From 4ec783faba386010c0b9418ebaa06bc431f707ee Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 24 Aug 2022 17:05:27 -0700 Subject: [PATCH] Release 0.3.23 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bd28ffb..ff1b4c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erased-serde" -version = "0.3.22" +version = "0.3.23" 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 0fca05a..ba01ad8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -95,7 +95,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/erased-serde/0.3.22")] +#![doc(html_root_url = "https://docs.rs/erased-serde/0.3.23")] #![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))]