Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Apr 16, 2024
1 parent 6d256d4 commit 5a63d32
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions rmp-serde/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmp-serde"
version = "1.1.2"
version = "1.2.0"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Serde bindings for RMP"
Expand All @@ -17,7 +17,7 @@ tag-prefix = "{{crate_name}}/"
[dependencies]
byteorder = "1.4.3"
serde = "1.0.136"
rmp = { version = "0.8.11", path = "../rmp" }
rmp = { version = "0.8.13", path = "../rmp" }

[dev-dependencies]
rmpv = { path = "../rmpv" }
Expand Down
6 changes: 4 additions & 2 deletions rmp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmp"
version = "0.8.12"
version = "0.8.13"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Pure Rust MessagePack serialization implementation"
Expand All @@ -17,13 +17,15 @@ num-traits = { version = "0.2.14", default-features = false }
# This is macro_only ;)
paste = "1.0"


[features]
default = ["std"]
std = ["byteorder/std", "num-traits/std"]

[dev-dependencies]
quickcheck = "1.0.2"

[package.metadata.release]
tag-prefix = "{{crate_name}}/"

[badges]
maintenance = { status = "looking-for-maintainer" }
7 changes: 5 additions & 2 deletions rmpv/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmpv"
version = "1.0.1"
version = "1.0.2"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Value variant for RMP"
Expand All @@ -17,12 +17,15 @@ with-serde = ["serde", "serde_bytes"]

[dependencies]
serde_bytes = { version = "0.11.5", optional = true }
rmp = { version = "0.8.11", path = "../rmp" }
rmp = { version = "0.8.13", path = "../rmp" }
num-traits = "0.2.14"
serde = { version = "1.0.130", optional = true }

[dev-dependencies]
quickcheck = "1.0.2"

[package.metadata.release]
tag-prefix = "{{crate_name}}/"

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

0 comments on commit 5a63d32

Please sign in to comment.