-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.07 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "optempty"
authors = [
"Daniel Cormier",
"Michael Hanley",
]
version = "0.1.13"
edition = "2021"
description = "Tools for working types that may be empty. E.g., an empty `String`, `Vec`, `HashMap`, etc."
documentation = "https://docs.rs/optempty/"
repository = "https://github.com/dcormier/optempty-rs"
license= "Apache-2.0"
keywords = [
# "result",
"option",
"empty",
# "none",
"collection",
# "collections",
# "binaryheap",
# "btreemap",
# "btreeset",
"hashmap",
# "hashset",
# "linkedlist",
"vec",
# "vecdeque",
]
categories = [
"data-structures",
"rust-patterns",
"no-std",
]
exclude = [
".gitignore",
"check.sh",
]
[package.metadata.docs.rs]
all-features = true
[package.metadata.playground]
all-features = true
[dependencies]
serde_json = { version = "1", default-features = false, features = ["alloc"], optional = true }
query_map = { version = "0", optional = true }
[dev-dependencies]
[features]
default = ["std"]
std = []
serdejson = ["serde_json"]
querymap = ["query_map", "std"]