1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.37"
15name = "either"
16version = "1.13.0"
17authors = ["bluss"]
18description = """
19The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.
20"""
21documentation = "https://docs.rs/either/1/"
22readme = "README-crates.io.md"
23keywords = [
24    "data-structure",
25    "no_std",
26]
27categories = [
28    "data-structures",
29    "no-std",
30]
31license = "MIT OR Apache-2.0"
32repository = "https://github.com/rayon-rs/either"
33
34[package.metadata.docs.rs]
35features = ["serde"]
36
37[package.metadata.playground]
38features = ["serde"]
39
40[package.metadata.release]
41no-dev-version = true
42tag-name = "{{version}}"
43
44[dependencies.serde]
45version = "1.0"
46features = ["derive"]
47optional = true
48
49[dev-dependencies.serde_json]
50version = "1.0.0"
51
52[features]
53default = ["use_std"]
54use_std = []
55