-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (24 loc) · 802 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
[package]
name = "serde-tuple-vec-map"
# Remember to update html_root_url in src/lib.rs with each version.
version = "1.0.1"
authors = ["David Ross <daboross@daboross.net>"]
description = "Serialize and deserialize Vec<(K, V)> as if it were a map in serde"
documentation = "https://docs.rs/tuple-vec-map/"
repository = "https://github.com/daboross/serde-tuple-vec-map/"
readme = "README.md"
license = "MIT"
keywords = ["serde", "vec", "hashmap"]
categories = ["encoding"]
include = ["Cargo.toml", "src/**/*", "tests/**/*", "examples/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[lib]
name = "tuple_vec_map"
path = "src/lib.rs"
[features]
std = []
default = ["std"]
[dependencies]
serde = { version = "1.0", default-features = false }
[dev-dependencies]
serde_derive = "1.0"
serde_json = "1.0"