2015-09-14 21:04:32 +00:00
|
|
|
[package]
|
|
|
|
name = "either"
|
2023-01-26 19:52:42 +00:00
|
|
|
version = "1.8.1"
|
2015-09-14 21:48:33 +00:00
|
|
|
authors = ["bluss"]
|
2022-06-24 22:19:35 +00:00
|
|
|
edition = "2018"
|
2022-07-29 23:58:13 +00:00
|
|
|
rust-version = "1.36"
|
2015-09-14 21:48:33 +00:00
|
|
|
|
2023-01-26 11:37:15 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2015-09-14 21:48:33 +00:00
|
|
|
repository = "https://github.com/bluss/either"
|
2016-09-23 09:54:30 +00:00
|
|
|
documentation = "https://docs.rs/either/1/"
|
2017-10-15 21:06:03 +00:00
|
|
|
readme = "README-crates.io.md"
|
2015-09-14 21:48:33 +00:00
|
|
|
|
2015-12-15 04:46:11 +00:00
|
|
|
description = """
|
2018-03-25 19:02:16 +00:00
|
|
|
The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.
|
2017-10-15 21:06:03 +00:00
|
|
|
"""
|
2015-09-14 21:48:33 +00:00
|
|
|
|
2016-09-23 09:30:44 +00:00
|
|
|
keywords = ["data-structure", "no_std"]
|
2017-02-10 15:47:22 +00:00
|
|
|
categories = ["data-structures", "no-std"]
|
2016-09-23 09:30:44 +00:00
|
|
|
|
2017-10-14 23:47:12 +00:00
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
|
|
|
2016-09-23 09:30:44 +00:00
|
|
|
[features]
|
|
|
|
default = ["use_std"]
|
|
|
|
use_std = []
|
2017-09-28 02:03:19 +00:00
|
|
|
|
2020-07-22 21:06:02 +00:00
|
|
|
[dev-dependencies]
|
2020-08-10 19:30:10 +00:00
|
|
|
serde_json = "1.0.0"
|
2020-07-22 21:06:02 +00:00
|
|
|
|
2017-09-28 02:03:19 +00:00
|
|
|
[package.metadata.release]
|
|
|
|
no-dev-version = true
|
2019-09-13 17:44:35 +00:00
|
|
|
tag-name = "{{version}}"
|
2017-10-15 21:10:23 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["serde"]
|