https://github.com/darfink/slice-pool-rs
A Rust library for using a slice as a memory pool
https://github.com/darfink/slice-pool-rs
Last synced: 6 months ago
JSON representation
A Rust library for using a slice as a memory pool
- Host: GitHub
- URL: https://github.com/darfink/slice-pool-rs
- Owner: darfink
- Created: 2016-12-07T16:51:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T09:59:25.000Z (over 2 years ago)
- Last Synced: 2024-11-14T16:47:25.585Z (6 months ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
slice-pool
======A Rust library for using a slice as a memory pool.
## Documentation
https://docs.rs/slice-pool
## Installation
Add this to your `Cargo.toml`:
```toml
[dependencies]
slice-pool = "0.4.1"
```and this to your crate root:
```rust
extern crate slice_pool;
```