BytesQuilt

BytesQuilt is a Rust library that provides an efficient and flexible way to handle binary data buffers. It allows you to write bytes in any order and efficiently reassemble the entire binary buffer without copying any data.

Features

Getting Started

To use BytesQuilt in your Rust project, simply add the following line to your Cargo.toml file:

toml [dependencies] bytes-quilt = "<version>"

Make sure to replace <version> with the appropriate version you want to use, following the semantic versioning guidelines.

Usage

Here's a simple example that demonstrates how to use BytesQuilt (note, some illustrated APIs may be aspirational and may not be implemented yet):

```rust use bytesquilt::BytesQuilt;

fn main() { // Create a new BytesQuilt instance let mut quilt = BytesQuilt::new();

// Write bytes to the quilt
quilt.put_u8_at(32, 0x04);
quilt.put_bytes_at(0, 0x01, 2);
quilt.put_at(16, &[0x02, 0x03]);
quilt.put_u32(40, 0x05);

// Reassemble the buffer
let buffer = quilt.into_inner();

// Use the buffer as needed
println!("Buffer: {:?}", buffer);
// Buffer: [0x01, 0x01, 0x02, 0x03, 0x04, 0x05]

} ```

For more details and advanced usage examples, please refer to the documentation.

Contributing

Contributions to BytesQuilt are welcome! If you encounter any issues, have suggestions, or would like to contribute new features or improvements, please open an issue or submit a pull request.

Please follow the contribution guidelines when submitting pull requests.

License

© Zefira Shannon | 2022-2023

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.