among 0.1.8

The enum `Among` with variants `Left`, `Middle` and `Right` is a general purpose sum type with three cases.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
rust-version = "1.37"
name = "among"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
The enum `Among` with variants `Left`, `Middle` and `Right` is a general purpose sum type with three cases.
"""
homepage = "https://github.com/al8n/among"
documentation = "https://docs.rs/among"
readme = "README.md"
keywords = [
    "data-structure",
    "no_std",
    "either",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/al8n/among"

[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]
features = [
    "serde",
    "futures",
    "either",
    "tokio",
]

[package.metadata.playground]
features = [
    "serde",
    "futures",
    "either",
    "tokio",
]

[features]
default = ["std"]
futures = ["futures-io"]
std = [
    "either?/use_std",
    "futures-io?/std",
]
tokio = ["dep:tokio"]

[lib]
name = "among"
path = "src/lib.rs"

[dependencies.either]
version = "1"
optional = true

[dependencies.futures-io]
version = "0.3"
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.tokio]
version = "1"
features = ["io-util"]
optional = true
default-features = false

[dev-dependencies.serde_json]
version = "1.0.0"