{"id":15033325,"url":"https://github.com/3hren/msgpack-rust","last_synced_at":"2025-05-12T13:18:41.316Z","repository":{"id":29051642,"uuid":"32579343","full_name":"3Hren/msgpack-rust","owner":"3Hren","description":"MessagePack implementation for Rust / msgpack.org[Rust]","archived":false,"fork":false,"pushed_at":"2025-02-05T16:16:21.000Z","size":1272,"stargazers_count":1253,"open_issues_count":80,"forks_count":143,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-05-12T13:18:20.791Z","etag":null,"topics":["crates-rmp","decoding","messagepack","msgpack","rmp","rust","serde","serialization"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/3Hren.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-03-20T11:09:01.000Z","updated_at":"2025-05-12T07:18:21.000Z","dependencies_parsed_at":"2024-04-16T16:06:24.574Z","dependency_job_id":"99619841-938b-41b7-a333-2dc36fabf646","html_url":"https://github.com/3Hren/msgpack-rust","commit_stats":{"total_commits":968,"total_committers":48,"mean_commits":"20.166666666666668","dds":"0.20557851239669422","last_synced_commit":"114b78ffba1202ada90d8309631c75354d6c5f65"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3Hren%2Fmsgpack-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3Hren%2Fmsgpack-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3Hren%2Fmsgpack-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3Hren%2Fmsgpack-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3Hren","download_url":"https://codeload.github.com/3Hren/msgpack-rust/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253745196,"owners_count":21957319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crates-rmp","decoding","messagepack","msgpack","rmp","rust","serde","serialization"],"created_at":"2024-09-24T20:20:49.222Z","updated_at":"2025-05-12T13:18:41.244Z","avatar_url":"https://github.com/3Hren.png","language":"Rust","readme":"# RMP - Rust MessagePack\n\nRMP is a complete pure-Rust [MessagePack](http://msgpack.org) implementation. MessagePack a compact self-describing binary serialization format.\n\nThis project consists of three crates:\n\n* [RMP-Serde][crates-rmps-url] ([Documentation][rmps-docs-url]) — easy serializing/deserializing via [Serde](https://serde.rs).\n* [RMP-Value][crates-rmpv-url] ([Documentation][rmpv-docs-url]) — a universal `Value` enum that can hold any MessagePack type. Allows deserializing arbitrary messages without a known schema.\n* [RMP][crates-rmp-url] ([Documentation][rmp-docs-url]) — low-level functions for reading/writing encoded data.\n\n## Features\n\n- **Convenient and powerful APIs**\n\n  RMP is designed to be lightweight and straightforward. There is a high-level API with support for Serde,\n  which provides you convenient interface for encode/decode Rust's data structures using `derive` attribute.\n  There are also low-level APIs, which give you full control over data encoding/decoding process,\n  with no-std support and without heap allocations.\n\n- **Zero-copy value decoding**\n\n  RMP allows to decode bytes from a buffer in a zero-copy manner. Parsing is implemented in safe Rust.\n\n- **Robust, stable and tested**\n\n  This project is developed using TDD and CI, so any found bugs will be fixed without breaking\n  existing functionality.\n\n## Why MessagePack?\n\nIt's smaller and much simpler to parse than JSON. The encoded data is self-describing and extensible, without using any schema definitions. It supports the same data types as JSON, plus binary data, non-string map keys, all float values, and 64-bit numbers. Msgpack values use `\u003clenght\u003e\u003cdata\u003e` encoding, so they can be safely concatenated and read from a stream.\n\nMessagePack is similar to CBOR, but has simpler data types (no bignums, decimal floats, dates, or indefinite-length sets, etc.)\n\n## Requirements\n\n- An up-to-date stable version of [Rust](https://www.rust-lang.org), preferably from [rustup](https://rustup.rs).\n\n[rustc-serialize]: https://github.com/rust-lang-nursery/rustc-serialize\n[serde]: https://github.com/serde-rs/serde\n\n[ci-img]: https://github.com/3Hren/msgpack-rust/actions/workflows/ci.yml/badge.svg\n[ci-url]: https://github.com/3Hren/msgpack-rust/actions/workflows/ci.yml\n\n[coveralls-img]: https://coveralls.io/repos/3Hren/msgpack-rust/badge.svg?branch=master\u0026service=github\n[coveralls-url]: https://coveralls.io/github/3Hren/msgpack-rust?branch=master\n\n[rmp-docs-url]: https://docs.rs/rmp\n[rmps-docs-url]: https://docs.rs/rmp-serde\n[rmpv-docs-url]: https://docs.rs/rmpv\n\n[crates-rmp-url]: https://lib.rs/crates/rmp\n[crates-rmps-url]: https://lib.rs/crates/rmp-serde\n[crates-rmpv-url]: https://lib.rs/crates/rmpv\n\n\n[![Build][ci-img]][ci-url] [![Coverage Status][coveralls-img]][coveralls-url]\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3hren%2Fmsgpack-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3hren%2Fmsgpack-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3hren%2Fmsgpack-rust/lists"}