Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jul 21, 2023
1 parent 4f35516 commit 69f90c6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .rustfmt.toml
@@ -1,4 +1,4 @@
# Rustfmt makes too many mistakes to be applied unconditionally to the whole code.
# Please don't apply rustfmt to code in this project. Disable rustfmt in your editor.
max_width = 1
ignore = ["."]
disable_all_formatting = true
ignore = ["/"]
6 changes: 3 additions & 3 deletions rmp-serde/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmp-serde"
version = "1.1.1"
version = "1.1.2"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Serde bindings for RMP"
Expand All @@ -9,7 +9,7 @@ documentation = "https://docs.rs/rmp-serde"
readme = "README.md"
keywords = ["msgpack", "MessagePack", "serde", "serialization"]
categories = ["encoding"]
edition = "2018"
edition = "2021"

[package.metadata.release]
tag-prefix = "{{crate_name}}/"
Expand All @@ -25,4 +25,4 @@ serde_bytes = "0.11.5"
serde_derive = "1.0.136"

[badges]
maintenance = { status = "passively-maintained" }
maintenance = { status = "looking-for-maintainer" }
6 changes: 3 additions & 3 deletions rmp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmp"
version = "0.8.11"
version = "0.8.12"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Pure Rust MessagePack serialization implementation"
Expand All @@ -9,7 +9,7 @@ documentation = "https://docs.rs/rmp"
readme = "README.md"
keywords = ["msgpack", "MessagePack"]
categories = ["encoding"]
edition = "2018"
edition = "2021"

[dependencies]
byteorder = { version = "1.4.2", default-features = false }
Expand All @@ -26,4 +26,4 @@ std = ["byteorder/std", "num-traits/std"]
quickcheck = "1.0.2"

[badges]
maintenance = { status = "passively-maintained" }
maintenance = { status = "looking-for-maintainer" }
8 changes: 6 additions & 2 deletions rmpv/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmpv"
version = "1.0.0"
version = "1.0.1"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Value variant for RMP"
Expand All @@ -9,7 +9,8 @@ documentation = "https://docs.rs/rmpv"
readme = "README.md"
keywords = ["msgpack", "MessagePack", "serialization"]
categories = ["encoding"]
edition = "2018"
edition = "2021"
rust-version = "1.70"

[features]
with-serde = ["serde", "serde_bytes"]
Expand All @@ -22,3 +23,6 @@ serde = { version = "1.0.130", optional = true }

[dev-dependencies]
quickcheck = "1.0.2"

[badges]
maintenance = { status = "looking-for-maintainer" }

0 comments on commit 69f90c6

Please sign in to comment.