Skip to content

Commit

Permalink
Release 0.1.35
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 2, 2024
1 parent b31ceac commit 5a4dd6a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniserde"
version = "0.1.34"
version = "0.1.35"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["encoding", "no-std"]
description = "Data structure serialization library with several opposite design goals from Serde."
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mini-internal"
version = "0.1.34"
version = "0.1.35"
authors = ["David Tolnay <dtolnay@gmail.com>"]
description = "Derive macros for miniserde. Use the re-exports from the miniserde crate instead."
documentation = "https://docs.rs/miniserde"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5a4dd6a

Please sign in to comment.