-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathCargo.toml
40 lines (31 loc) · 899 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "either"
version = "1.15.0"
authors = ["bluss"]
edition = "2021"
rust-version = "1.63.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rayon-rs/either"
documentation = "https://docs.rs/either/1/"
readme = "README-crates.io.md"
description = """
The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.
"""
keywords = ["data-structure", "no_std"]
categories = ["data-structures", "no-std"]
[dependencies]
serde = { version = "1.0.95", optional = true, default-features = false, features = ["alloc", "derive"] }
[features]
default = ["std"]
std = []
use_std = ["std"] # deprecated alias
[dev-dependencies]
serde_json = "1.0.0"
[package.metadata.release]
allow-branch = ["main"]
sign-tag = true
tag-name = "{{version}}"
[package.metadata.docs.rs]
features = ["serde"]
[package.metadata.playground]
features = ["serde"]