1 | [package] |
2 | name = "either" |
3 | version = "1.15.0" |
4 | authors = ["bluss" ] |
5 | edition = "2021" |
6 | rust-version = "1.63.0" |
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.95" , optional = true, default-features = false, features = ["alloc" , "derive" ] } |
22 | |
23 | [features] |
24 | default = ["std" ] |
25 | std = [] |
26 | use_std = ["std" ] # deprecated alias |
27 | |
28 | [dev-dependencies] |
29 | serde_json = "1.0.0" |
30 | |
31 | [package.metadata.release] |
32 | allow-branch = ["main" ] |
33 | sign-tag = true |
34 | tag-name = "{{version}}" |
35 | |
36 | [package.metadata.docs.rs] |
37 | features = ["serde" ] |
38 | |
39 | [package.metadata.playground] |
40 | features = ["serde" ] |
41 | |