heapless/Cargo.toml
Jorge Aparicio 22874dfb87 v0.4.4
2019-05-02 12:40:47 +02:00

40 lines
837 B
TOML

[package]
authors = [
"Jorge Aparicio <jorge@japaric.io>",
"Per Lindgren <per.lindgren@ltu.se>",
]
categories = [
"data-structures",
"no-std",
]
description = "`static` friendly data structures that don't require dynamic memory allocation"
documentation = "https://japaric.github.io/heapless/heapless/index.html"
keywords = [
"static",
"no-heap",
]
license = "MIT OR Apache-2.0"
name = "heapless"
repository = "https://github.com/japaric/heapless"
version = "0.4.4"
[features]
const-fn = ["min-const-fn"]
min-const-fn = []
smaller-atomics = []
[dev-dependencies]
scoped_threadpool = "0.1.8"
[dependencies]
as-slice = "0.1.0"
generic-array = "0.11.0"
hash32 = "0.1.0"
[dependencies.serde]
version = "1"
optional = true
default-features = false
[package.metadata.docs.rs]
features = ["const-fn", "smaller-atomics"]