• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.36"
15name = "either"
16version = "1.8.1"
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/bluss/either"
33
34[package.metadata.release]
35no-dev-version = true
36tag-name = "{{version}}"
37
38[package.metadata.docs.rs]
39features = ["serde"]
40
41[dependencies.serde]
42version = "1.0"
43features = ["derive"]
44optional = true
45
46[dev-dependencies.serde_json]
47version = "1.0.0"
48
49[features]
50default = ["use_std"]
51use_std = []
52