1[package] 2name = "fallible-iterator" 3version = "0.2.0" 4authors = ["Steven Fackler <sfackler@gmail.com>"] 5edition = "2018" 6license = "MIT/Apache-2.0" 7description = "Fallible iterator traits" 8repository = "https://github.com/sfackler/rust-fallible-iterator" 9readme = "README.md" 10categories = ["algorithms", "no-std"] 11 12[features] 13alloc = [] 14std = [] 15default = ["std"] 16