├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-0BSD.txt ├── README.md └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-labs/rust-atomic_ring_buffer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-labs/rust-atomic_ring_buffer/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-0BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-labs/rust-atomic_ring_buffer/HEAD/LICENSE-0BSD.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Completely broken, do not use 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-labs/rust-atomic_ring_buffer/HEAD/src/lib.rs --------------------------------------------------------------------------------