| Crates.io | linked-list |
| lib.rs | linked-list |
| version | 0.1.0 |
| created_at | 2015-03-18 16:25:51.480673+00 |
| updated_at | 2024-12-02 07:08:15.186297+00 |
| description | An alternative implementation of std::collections::LinkedList |
| homepage | https://github.com/contain-rs/linked-list |
| repository | https://github.com/contain-rs/linked-list |
| max_upload_size | |
| id | 1597 |
| size | 77,865 |
Add this to your Cargo.toml:
[dependencies]
linked-list = "0.1"
Since Rust 2018, extern crate is no longer mandatory. If your edition is old (Rust 2015),
add this to your crate root:
extern crate linked_list;
If you want serde support, include the feature like this:
[dependencies]
linked-list = { version = "0.1", features = ["serde"] }
If you want borsh-rs support, include it like this:
[dependencies]
linked-list = { version = "0.1", features = ["borsh"] }
Other available serialization libraries can be enabled with the
miniserde and
nanoserde features.
An alternative implementation of standard LinkedList featuring a prototype Cursor.
Dual-licensed for compatibility with the Rust project.
Licensed under the Apache License Version 2.0: http://www.apache.org/licenses/LICENSE-2.0, or the MIT license: http://opensource.org/licenses/MIT, at your option.