1[package]
2name = "either"
3version = "1.15.0"
4authors = ["bluss"]
5edition = "2021"
6rust-version = "1.63.0"
7
8license = "MIT OR Apache-2.0"
9repository = "https://github.com/rayon-rs/either"
10documentation = "https://docs.rs/either/1/"
11readme = "README-crates.io.md"
12
13description = """
14The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.
15"""
16
17keywords = ["data-structure", "no_std"]
18categories = ["data-structures", "no-std"]
19
20[dependencies]
21serde = { version = "1.0.95", optional = true, default-features = false, features = ["alloc", "derive"] }
22
23[features]
24default = ["std"]
25std = []
26use_std = ["std"] # deprecated alias
27
28[dev-dependencies]
29serde_json = "1.0.0"
30
31[package.metadata.release]
32allow-branch = ["main"]
33sign-tag = true
34tag-name = "{{version}}"
35
36[package.metadata.docs.rs]
37features = ["serde"]
38
39[package.metadata.playground]
40features = ["serde"]
41