mirror of
https://github.com/trussed-dev/cbor-smol.git
synced 2026-06-20 04:17:03 -07:00
This patch also removes the bytes-from-array feature: We originally added it to the fork so that a wrong patched version would cause a compiler error. Now we can just bump the required minimum version instead.
32 lines
830 B
TOML
32 lines
830 B
TOML
[package]
|
|
name = "cbor-smol"
|
|
version = "0.4.1"
|
|
authors = ["Nicolas Stalder <n@stalder.io>", "The Trussed developers"]
|
|
edition = "2021"
|
|
description = "Streamlined serde serializer/deserializer for CBOR"
|
|
repository = "https://github.com/trussed-dev/cbor-smol"
|
|
readme = "README.md"
|
|
license = "Apache-2.0 OR MIT"
|
|
documentation = "https://docs.rs/cbor-smol"
|
|
keywords = ["CBOR", "serde"]
|
|
categories = ["development-tools", "embedded"]
|
|
|
|
[dependencies]
|
|
delog = "0.1.0-alpha.3"
|
|
heapless = "0.7"
|
|
heapless-bytes = "0.3"
|
|
serde = { version = "1", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
heapless = { version = "0.7", features = ["serde"] }
|
|
serde = { version = "1", default-features = false, features = ["derive"] }
|
|
serde_bytes = "0.11.12"
|
|
|
|
[features]
|
|
log-all = []
|
|
log-none = []
|
|
log-info = []
|
|
log-debug = []
|
|
log-warn = []
|
|
log-error = []
|