# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "genio" version = "0.2.1" authors = ["Martin Habovštiak "] description = "A type safe, low level replacement for `std::io`.\n\nSupports `no_std` for embedded development, just disable cargo feature\n`std`.\n\nBecause of limitations of `std::io::Error` type, `genio` provides `Read` and\n`Write` traits that allow implementors to choose their own type. This type can\nbe better at expressing what kinds of error can happen.\n" homepage = "https://github.com/Kixunil/genio" documentation = "https://docs.rs/genio" readme = "README.md" keywords = ["io", "generic", "read", "write", "no_std"] categories = ["no-std", "embedded"] license = "MIT/Apache-2.0" repository = "https://github.com/Kixunil/genio" [dependencies.byteorder] version = "1" optional = true [dependencies.void] version = "1" default-features = false [features] default = ["std"] std = ["void/std"] use_std = ["std"]