You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 15, 2021. It is now read-only.
After almost 6 years it is time to retire this crate.
9
+
This implementation of CBOR for serde is used in hundreds of projects with widely differing needs.
10
+
Besides the standard features it contains code for no-std environments, a packed encoding and CBOR tags.
11
+
However while these features are useful to many people they sometimes interact poorly with each others and with optional features of serde itself.
12
+
Because I don't use the crate myself and because of the potential for new errors I have been reluctant to accept any changes or additional features for the crate.
13
+
Since this situation is unlikely to change anytime soon and no one else stepped up to maintain this crate I am archiving the repository today.
14
+
If the crate works for you there is no need to switch to another implementation.
15
+
However if you encounter problems or for new projects I recommend you take a look at these crates:
16
+
17
+
*[ciborium](https://crates.io/crates/ciborium)
18
+
*[minicbor](https://crates.io/crates/minicbor)
19
+
20
+
~~ Pyfisch, August 2021
21
+
22
+
23
+
6
24
This crate implements the Concise Binary Object Representation from [RFC 7049].
7
25
It builds on [Serde], the generic serialization framework for Rust.
8
26
CBOR provides a binary encoding for a superset
@@ -16,7 +34,7 @@ of the JSON data model that is small and very fast to parse.
16
34
Serde CBOR supports Rust 1.40 and up. Add this to your `Cargo.toml`:
17
35
```toml
18
36
[dependencies]
19
-
serde_cbor = "0.11.1"
37
+
serde_cbor = "0.11.2"
20
38
```
21
39
22
40
Storing and loading Rust types is easy and requires only
0 commit comments