opool 0.2.0

High-performance, lock-free local and concurrent object pool with automated allocation, cleanup, and verification.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]
#![doc = include_str!("../README.md")]
#![warn(missing_docs, missing_debug_implementations)]
extern crate alloc;
mod concurrent;
mod pool_allocator;
mod thread_local;

pub use concurrent::*;
pub use pool_allocator::*;
pub use thread_local::*;