diff --git a/Cargo.toml b/Cargo.toml index a7fb64d..840392f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniserde" -version = "0.1.34" +version = "0.1.35" authors = ["David Tolnay "] categories = ["encoding", "no-std"] description = "Data structure serialization library with several opposite design goals from Serde." @@ -14,7 +14,7 @@ rust-version = "1.56" [dependencies] itoa = "1.0" -mini-internal = { version = "=0.1.34", path = "derive" } +mini-internal = { version = "=0.1.35", path = "derive" } ryu = "1.0" [dev-dependencies] diff --git a/derive/Cargo.toml b/derive/Cargo.toml index fe3b9a3..62d7e65 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mini-internal" -version = "0.1.34" +version = "0.1.35" authors = ["David Tolnay "] description = "Derive macros for miniserde. Use the re-exports from the miniserde crate instead." documentation = "https://docs.rs/miniserde" diff --git a/src/lib.rs b/src/lib.rs index fccef2c..6d5b80a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -134,7 +134,7 @@ //! restricts the kinds of on-the-fly manipulation that are possible in custom //! impls. If you need any of this, use Serde -- it's a great library. -#![doc(html_root_url = "https://docs.rs/miniserde/0.1.34")] +#![doc(html_root_url = "https://docs.rs/miniserde/0.1.35")] #![allow( clippy::cast_possible_wrap, clippy::cast_precision_loss,