2020-01-17 14:20:37 +01:00
|
|
|
[package]
|
|
|
|
|
name = "heapless-bytes"
|
2021-06-10 22:45:31 +02:00
|
|
|
version = "0.3.0"
|
2020-01-17 14:20:37 +01:00
|
|
|
authors = ["Nicolas Stalder <n@stalder.io>"]
|
|
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
|
description = "Newtype around heapless byte Vec with efficient serde."
|
|
|
|
|
categories = ["embedded", "encoding", "no-std"]
|
|
|
|
|
keywords = ["serde", "cbor", "rust", "no-std"]
|
|
|
|
|
repository = "https://github.com/ycrypto/heapless-bytes"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
edition = "2018"
|
|
|
|
|
|
2020-05-03 02:17:04 +02:00
|
|
|
[dependencies]
|
|
|
|
|
typenum = "1.11.2"
|
|
|
|
|
|
2020-01-17 14:20:37 +01:00
|
|
|
[dependencies.heapless]
|
2021-06-10 22:45:31 +02:00
|
|
|
version = "0.7"
|
2020-01-17 14:20:37 +01:00
|
|
|
default-features = false
|
|
|
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
|
version = "1.0"
|
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
|
|
[dependencies.serde_cbor]
|
|
|
|
|
version = "0.11.0"
|
|
|
|
|
default-features = false
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
cbor = ["serde_cbor"]
|