• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-1,652685

tests/H03-May-2022-749621

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

CHANGELOG.mdH A D29-Nov-19731 KiB3525

Cargo.tomlH A D01-Jan-19701.1 KiB4137

Cargo.toml.orig-cargoH A D29-Nov-1973816 3227

LICENSEH A D29-Nov-19731 KiB2622

README.mdH A D29-Nov-19731.1 KiB5233

README.md

1# Slab
2
3Pre-allocated storage for a uniform data type.
4
5[![Crates.io][crates-badge]][crates-url]
6[![Build Status][ci-badge]][ci-url]
7
8[crates-badge]: https://img.shields.io/crates/v/slab
9[crates-url]: https://crates.io/crates/slab
10[ci-badge]: https://img.shields.io/github/workflow/status/tokio-rs/slab/CI/master
11[ci-url]: https://github.com/tokio-rs/slab/actions
12
13[Documentation](https://docs.rs/slab)
14
15## Usage
16
17To use `slab`, first add this to your `Cargo.toml`:
18
19```toml
20[dependencies]
21slab = "0.4"
22```
23
24Next, add this to your crate:
25
26```rust
27use slab::Slab;
28
29let mut slab = Slab::new();
30
31let hello = slab.insert("hello");
32let world = slab.insert("world");
33
34assert_eq!(slab[hello], "hello");
35assert_eq!(slab[world], "world");
36
37slab[world] = "earth";
38assert_eq!(slab[world], "earth");
39```
40
41See [documentation](https://docs.rs/slab) for more details.
42
43## License
44
45This project is licensed under the [MIT license](LICENSE).
46
47### Contribution
48
49Unless you explicitly state otherwise, any contribution intentionally submitted
50for inclusion in `slab` by you, shall be licensed as MIT, without any additional
51terms or conditions.
52