19
19
20
20
[ crates.io shield ] : https://img.shields.io/crates/v/linked-list?label=latest
21
21
[ crates.io link ] : https://crates.io/crates/linked-list
22
- [ docs.rs badge ] : https://docs.rs/linked-list/badge.svg?version=0.0.3
23
- [ docs.rs link ] : https://docs.rs/linked-list/0.0.3 /linked_list/
22
+ [ docs.rs badge ] : https://docs.rs/linked-list/badge.svg?version=0.1.0
23
+ [ docs.rs link ] : https://docs.rs/linked-list/0.1.0 /linked_list/
24
24
[ github ci badge ] : https://github.com/contain-rs/linked-list/workflows/Rust/badge.svg?branch=master
25
25
[ rustc 1.67+ ] : https://img.shields.io/badge/rustc-1.67%2B-blue.svg
26
- [ deps.rs status ] : https://deps.rs/crate/linked-list/0.0.3 /status.svg
27
- [ deps.rs link ] : https://deps.rs/crate/linked-list/0.0.3
26
+ [ deps.rs status ] : https://deps.rs/crate/linked-list/0.1.0 /status.svg
27
+ [ deps.rs link ] : https://deps.rs/crate/linked-list/0.1.0
28
28
[ shields.io download count ] : https://img.shields.io/crates/d/linked-list.svg
29
29
30
30
## Usage
@@ -33,7 +33,7 @@ Add this to your Cargo.toml:
33
33
34
34
``` toml
35
35
[dependencies ]
36
- linked-list = " 0.0.3 "
36
+ linked-list = " 0.1 "
37
37
```
38
38
39
39
Since Rust 2018, ` extern crate ` is no longer mandatory. If your edition is old (Rust 2015),
@@ -47,9 +47,20 @@ If you want [serde](https://github.com/serde-rs/serde) support, include the feat
47
47
48
48
``` toml
49
49
[dependencies ]
50
- linked-list = { version = " 0.0.3 " , features = [" serde" ] }
50
+ linked-list = { version = " 0.1 " , features = [" serde" ] }
51
51
```
52
52
53
+ If you want [ borsh-rs] ( https://github.com/near/borsh-rs ) support, include it like this:
54
+
55
+ ``` toml
56
+ [dependencies ]
57
+ linked-list = { version = " 0.1" , features = [" borsh" ] }
58
+ ```
59
+
60
+ Other available serialization libraries can be enabled with the
61
+ [ ` miniserde ` ] ( https://github.com/dtolnay/miniserde ) and
62
+ [ ` nanoserde ` ] ( https://github.com/not-fl3/nanoserde ) features.
63
+
53
64
<!-- cargo-rdme start -->
54
65
55
66
### Description
0 commit comments