buffex 0.0.1

BUFFer EXtensions: ring buffer and buffer chaining.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]

// We always pull in `std` during tests, because it's just easier
// to write tests when you can assume you're on a capable platform
#[cfg(test)]
extern crate std;

pub mod ring_buffer;

pub mod x_deps {
    pub use abs_buff;
    pub use asyncex;

    pub use asyncex::x_deps::{abs_sync, atomex, atomic_sync};
}