-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
39 lines (34 loc) · 937 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
[package]
name = "flat_map"
version = "0.0.10"
authors = [
"Jason Toffaletti <[email protected]>",
"Michael Dilger <[email protected]>",
"Pratyush Mishra <[email protected]>",
"Antoine Desbordes <[email protected]>",
"Erich Gubler <[email protected]>",
"Guillaume Gomez <[email protected]>",
]
description = "A compact map stored as a vector of key, value pairs."
license = "Apache-2.0"
repository = "https://github.com/toffaletti/flat_map.git"
readme = "README.md"
include = [
"src/*.rs",
"test/*.rs",
"Cargo.toml",
"README.md",
]
[lib]
name = "flat_map"
doctest = false
[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
serde_derive = { version = "1.0", optional = true }
[features]
std = []
default = ["std"]
serde1 = ["serde", "serde_derive"]
[dev-dependencies]
serde_json = { version = "1.0"}
rand = { version = "0.4" }