msgpack-rust icon indicating copy to clipboard operation
msgpack-rust copied to clipboard

MessagePack implementation for Rust / msgpack.org[Rust]

Results 68 msgpack-rust issues
Sort by recently updated
recently updated
newest added

The changelogs haven't been updated in a while, e.g. https://github.com/3Hren/msgpack-rust/blob/master/rmp-serde/CHANGELOG.md#unreleasedunreleased has no references to 0.14.0 and greater. It appears `rmp-serde` 0.14.0 included at least two breaking changes, but it's difficult...

The `unsafe` behavior of `Raw` is trivially shown to be unsound. `str` is *required* to be valid UTF-8, and its methods assume that it contains valid UTF-8 for the purpose...

I'm looking for a highly compact serialization format that allows for a certain backwards compatibility. rmp-serde looks like a very interesting candidate, because its non-named representation is very concise indeed....

To trigger this issue, you need to create a `struct` containing at least two fields: - the first field is **optional** with the default value of **`None`**, and the created...

Hello. I'm wondering, does this library provides deterministic/canonical encoding? It is not completely clear to me that the same struct always encodes to the same series of bytes. As the...

Hello, I am porting some messagepack code from another language and need to deserialize Msgpack's [Timestamp](https://github.com/msgpack/msgpack/blob/master/spec.md#timestamp-extension-type) type. Are there any resources on how to do this? I'm guessing I need...

Thanks for this library! Is there any interest from the devs in `no_std` support? We have been using `corepack` as an alternative but it is inferior to `rmp` in a...

M: help wanted

When using #[serde(skip_serializing_if="Option::is_none")] on a field that has the value None and if it is not the last field deserialization fails(maybe it is already serialized in a wrong way) Here...

I find setting a desired configuration rather tedious. The following things would help: - Make all constructors `const` so that they may be used in constants - Provide some constants...

Hey! I'd like to be able to create an async reader / async writer and then plug it straight into `rmp_serde`. The current functions `from_read` have a trait bound `Read`,...