{"id":13439329,"url":"https://github.com/3Hren/msgpack-rust","last_synced_at":"2025-03-20T08:30:25.822Z","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":"2024-01-06T05:05:20.000Z","size":1214,"stargazers_count":1073,"open_issues_count":61,"forks_count":121,"subscribers_count":18,"default_branch":"master","last_synced_at":"2024-04-14T13:51:51.580Z","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}},"created_at":"2015-03-20T11:09:01.000Z","updated_at":"2024-04-16T16:06:26.377Z","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":936,"total_committers":47,"mean_commits":"19.914893617021278","dds":"0.17841880341880345","last_synced_commit":"941441f484c325464c9746fdca9d11c1ca6a2d78"},"previous_names":[],"tags_count":33,"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":221411328,"owners_count":16815653,"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-07-31T03:01:12.992Z","updated_at":"2024-10-27T22:30:40.938Z","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":["Libraries","Rust","代码","库 Libraries","库"],"sub_categories":["Encoding","编码","编码 Encoding","加密 Encoding","编码(Encoding)"],"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"}