yep-coc 0.2.0

Yet another circular buffer. This one happens to be a zero copy, MPMC, lock free queue.
Documentation
/// the circular queue code
pub mod queue;
pub use queue::YCQueue;
pub use queue::YCQueueConsumeSlot;
pub use queue::YCQueueOwner;
pub use queue::YCQueueProduceSlot;

/// Futex-backed helpers (optional feature)
#[cfg(feature = "futex")]
pub mod futex_queue;
#[cfg(feature = "futex")]
pub use futex_queue::YCFutexQueue;

/// dependencies for the circular queue code
pub mod queue_meta;
pub use queue_meta::YCQueueSharedMeta;

/// the errors
pub mod error;
pub use error::YCQueueError;

/// A way to allocate data for the queue
pub mod queue_alloc_helpers;

/// utils for internal usage
mod utils;