1[package]
2name = "either"
3version = "1.1.0"
4authors = ["bluss"]
5
6license = "MIT/Apache-2.0"
7repository = "https://github.com/bluss/either"
8documentation = "https://docs.rs/either/1/"
9
10description = """
11The enum `Either`, with variants `Left` and `Right` and trait implementations including Iterator, Read, Write.
12
13Either has methods that are similar to Option and Result.
14
15Includes convenience macros `try_left!()` and `try_right!()` to use for short-circuiting logic."""
16
17keywords = ["data-structure", "no_std"]
18categories = ["data-structures", "no-std"]
19
20[features]
21default = ["use_std"]
22use_std = []
23