[package] name = "rle-decode-helper" version = "1.0.0-alpha2" authors = ["Moritz Wanzenböck "] edition = "2018" license = "MIT OR Apache-2.0" description = """ THE fastest way to implement any kind of decoding for Run Length Encoded data in Rust. Writing a fast decoder that is also safe can be quite challenging, so this crate is here to save you the hassle of maintaining and testing your own implementation. """ repository = "https://github.com/WanzenBug/rle-decode-helper" readme = "README.md" [[bench]] name = "bench" harness = false [dependencies] [dev-dependencies] criterion = "0.2"