[package] name = "genio" version = "0.2.1" authors = ["Martin Habovštiak "] license = "MIT/Apache-2.0" readme = "README.md" keywords = ["io", "generic", "read", "write", "no_std"] categories = ["no-std", "embedded"] repository = "https://github.com/Kixunil/genio" homepage = "https://github.com/Kixunil/genio" documentation = "https://docs.rs/genio" description = """ A type safe, low level replacement for `std::io`. Supports `no_std` for embedded development, just disable cargo feature `std`. Because of limitations of `std::io::Error` type, `genio` provides `Read` and `Write` traits that allow implementors to choose their own type. This type can be better at expressing what kinds of error can happen. """ [dependencies] void = { version = "1", default-features = false } byteorder = { version = "1", optional = true } [features] default = ["std"] std = ["void/std"] # Deprecated, kept for backward compatibility use_std = ["std"]