You've already forked heapless-bytes
mirror of
https://github.com/trussed-dev/heapless-bytes.git
synced 2026-03-11 16:31:06 -07:00
31 lines
673 B
TOML
31 lines
673 B
TOML
[package]
|
|
name = "heapless-bytes"
|
|
version = "0.3.0"
|
|
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"
|
|
|
|
[dependencies]
|
|
typenum = "1.11.2"
|
|
|
|
[dependencies.heapless]
|
|
version = "0.7"
|
|
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"]
|