1 | [package] |
2 | name = "either" |
3 | version = "1.10.0" |
4 | authors = ["bluss" ] |
5 | edition = "2018" |
6 | rust-version = "1.36" |
7 | |
8 | license = "MIT OR Apache-2.0" |
9 | repository = "https://github.com/rayon-rs/either" |
10 | documentation = "https://docs.rs/either/1/" |
11 | readme = "README-crates.io.md" |
12 | |
13 | description = "" " |
14 | The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases. |
15 | " "" |
16 | |
17 | keywords = ["data-structure" , "no_std" ] |
18 | categories = ["data-structures" , "no-std" ] |
19 | |
20 | [dependencies] |
21 | serde = { version = "1.0" , optional = true, features = ["derive" ] } |
22 | |
23 | [features] |
24 | default = ["use_std" ] |
25 | use_std = [] |
26 | |
27 | [dev-dependencies] |
28 | serde_json = "1.0.0" |
29 | |
30 | [package.metadata.release] |
31 | no-dev-version = true |
32 | tag-name = "{{version}}" |
33 | |
34 | [package.metadata.docs.rs] |
35 | features = ["serde" ] |
36 | |