-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 loc) · 1.08 KB
/
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
[package]
name = "array_map"
version = "0.4.0"
authors = ["Tyler Hawkes <tyler.hawkes@gmail.com>"]
edition = "2021"
description = "Map backed array for fixed size keys with O(1) performance"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tylerhawkes/array_map"
documentation = "https://docs.rs/array_map"
readme = "README.md"
keywords = ["no_std", "no-std", "data", "structure", "map"]
categories = ["data-structures", "embedded", "no-std"]
publish = ["crates-io"]
exclude = ["**/*.sh", "array_map_doc_test"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["array_map_derive"]
[dependencies]
array_map_derive = { version = "0.4", optional = true, path = "array_map_derive" }
serde = { version = "1", optional = true, default_features = false, features = ["derive"] }
[features]
derive = ["array_map_derive"]
std = []
[dev-dependencies]
serde_json = "1"
serde = { version = "1", features = ["derive"] }
array_map_derive = { version = "0.4", path = "array_map_derive" }
[package.metadata.docs.rs]
all-features = true