├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── rust-toolchain.toml ├── rustfmt.toml ├── src ├── buffer.rs ├── lib.rs └── reader.rs └── tests ├── buffer.rs └── reader.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | .idea 4 | *.iml 5 | .vscode -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/src/buffer.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/src/reader.rs -------------------------------------------------------------------------------- /tests/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/tests/buffer.rs -------------------------------------------------------------------------------- /tests/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terahlunah/bytebuffer/HEAD/tests/reader.rs --------------------------------------------------------------------------------