1[package] 2name = "either" 3version = "1.8.1" 4authors = ["bluss"] 5edition = "2018" 6rust-version = "1.36" 7 8license = "MIT OR Apache-2.0" 9repository = "https://github.com/bluss/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", optional = true, features = ["derive"] } 22 23[features] 24default = ["use_std"] 25use_std = [] 26 27[dev-dependencies] 28serde_json = "1.0.0" 29 30[package.metadata.release] 31no-dev-version = true 32tag-name = "{{version}}" 33 34[package.metadata.docs.rs] 35features = ["serde"] 36