Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
patches/ | 25-Apr-2025 | - | 19 | 15 | ||
src/ | 25-Apr-2025 | - | 1,717 | 716 | ||
tests/ | 25-Apr-2025 | - | 786 | 653 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 897 | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 1.4 KiB | 61 | 56 | |
CHANGELOG.md | D | 25-Apr-2025 | 1.5 KiB | 55 | 37 | |
Cargo.toml | D | 25-Apr-2025 | 1.2 KiB | 56 | 48 | |
LICENSE | D | 25-Apr-2025 | 1 KiB | 26 | 22 | |
METADATA | D | 25-Apr-2025 | 368 | 18 | 17 | |
MODULE_LICENSE_MIT | D | 25-Apr-2025 | 0 | |||
NOTICE | D | 25-Apr-2025 | 1 KiB | 26 | 22 | |
README.md | D | 25-Apr-2025 | 1.1 KiB | 52 | 33 | |
TEST_MAPPING | D | 25-Apr-2025 | 1.2 KiB | 57 | 56 | |
build.rs | D | 25-Apr-2025 | 928 | 25 | 18 | |
cargo_embargo.json | D | 25-Apr-2025 | 47 | 5 | 4 |
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/actions/workflow/status/tokio-rs/slab/ci.yml?branch=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