osrs-buffer

Crates.ioosrs-buffer
lib.rsosrs-buffer
version0.7.0
sourcesrc
created_at2021-12-27 23:20:45.816873
updated_at2022-12-31 10:33:54.769177
descriptionA buffer for the data types in Oldschool Runescape.
homepage
repositoryhttps://github.com/runecore/osrs-buffer
max_upload_size
id503914
size27,725
Sage (Sages0ft)

documentation

README

osrs-buffer

Build API Crate dependency status Discord

A buffer for Oldschool Runescape data types.

Deprecated

This crate has been deprecated in favor of osrs-bytes. osrs-buffer will not be updated anymore.

Installation

Add this crate as a dependency to your Cargo.toml file.

[dependencies]
osrs-buffer = "0.7.0"

Example

use osrs_buffer::{ReadExt, WriteExt};
use std::io::{self, Cursor};

fn main() -> Result<(), io::Error> {
    // Read data from the cursor
    let mut csr = Cursor::new(vec![123]);
    assert_eq!(csr.read_i8()?, 123);

    // Write data to the vector
    let mut vec = Vec::new();
    vec.write_i8(124)?;
    assert_eq!(vec[0], 124);

    Ok(())
}

License

This project is licensed under the MIT license.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in osrs-buffer by you, shall be licensed as MIT, without any additional terms or conditions.

Commit count: 24

cargo fmt