forked from tesuji/rust-oom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 820 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
[package]
name = "oom"
version = "0.3.0" # Also update `html_root_url` in lib.rs and README
authors = ["Lzu Tao <taolzu@gmail.com>"]
categories = ["no-std", "parser-implementations", "parsing"]
documentation = "https://docs.rs/oom/*/x86_64-unknown-linux-gnu/oom/"
edition = "2018"
exclude = [
"/.github",
"/HOW-TO-RELEASE.md",
"/todo.md",
]
keywords = ["nonempty", "non-empty"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/lzutao/rust-oom"
description = "One or Many types (Haskell NonEmpty)"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
[features]
default = ["slice"]
std = ["vec"]
slice = []
vec = [ "slice" ]
# iter = []
# array = []
## cannot generic over tuple length
# tuple = []
[dependencies]
[dev-dependencies]
trybuild = "1.0"