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
24 lines
644 B
TOML
24 lines
644 B
TOML
[package]
|
|
name = "heapless-bytes"
|
|
version = "0.4.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 = "2021"
|
|
|
|
|
|
[dependencies]
|
|
heapless = { version = "0.8", default-features = false }
|
|
serde = { version = "1.0", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0.176"
|
|
|
|
[features]
|
|
# From/Into implementation to `heapless::Vec<u8, N>`
|
|
"heapless-0.8" = []
|