mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-27 12:30:35 +00:00
42 lines
799 B
TOML
42 lines
799 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://docs.rs/heapless"
|
|
edition = "2018"
|
|
keywords = [
|
|
"static",
|
|
"no-heap",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
name = "heapless"
|
|
repository = "https://github.com/japaric/heapless"
|
|
version = "0.5.1"
|
|
|
|
[[test]]
|
|
name = "cfail"
|
|
required-features = ["__trybuild"]
|
|
|
|
[dev-dependencies]
|
|
scoped_threadpool = "0.1.8"
|
|
trybuild = "1.0.18"
|
|
|
|
[dependencies]
|
|
as-slice = "0.1.0"
|
|
generic-array = "0.13.0"
|
|
hash32 = "0.1.0"
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[features]
|
|
# only for tests
|
|
__trybuild = [] |