aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2020-07-28 13:47:34 -0700
committerJoel Galenson <jgalenson@google.com>2020-07-28 13:47:34 -0700
commit6b7b06bd2d27bf0ad91af5f07d7d84fe684ffc44 (patch)
treedfd95ab0ac90586a2cccf95bcc760dc88b9bd47c /README.md
parent5842ccd0f100ea7034013693a92489c5b1461b5e (diff)
downloadfallible-iterator-6b7b06bd2d27bf0ad91af5f07d7d84fe684ffc44.tar.gz
Import fallible-iterator-0.2.0
Change-Id: Ifea46292d69894ba84fea5a82bb9afa58b874905
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e7a4af2
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
+# rust-fallible-iterator
+
+[![CircleCI](https://circleci.com/gh/sfackler/rust-fallible-iterator.svg?style=shield)](https://circleci.com/gh/sfackler/rust-fallible-iterator)
+
+[Documentation](https://sfackler.github.io/rust-fallible-iterator/doc/v0.1.3/fallible_iterator)
+
+"Fallible" iterators for Rust.
+
+## Features
+
+If the `std` or `alloc` features are enabled, this crate provides implementations for
+`Box`, `Vec`, `BTreeMap`, and `BTreeSet`. If the `std` feature is enabled, this crate
+additionally provides implementations for `HashMap` and `HashSet`.
+
+If the `std` feature is disabled, this crate does not depend on `libstd`.