Files
serde-indexed/Cargo.toml
T
2025-06-06 10:13:39 +02:00

28 lines
781 B
TOML

[package]
name = "serde-indexed"
version = "0.2.0"
authors = ["Nicolas Stalder <n@stalder.io>", "The Trussed Developers"]
license = "Apache-2.0 OR MIT"
description = "Derivation of Serialize and Deserialize that replaces struct keys with numerical indices."
categories = ["embedded", "encoding", "no-std"]
keywords = ["serde", "cbor", "rust", "no-std"]
repository = "https://github.com/nickray/serde-indexed"
readme = "README.md"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
[dev-dependencies]
heapless = { version = "0.7.16", default-features = false, features = ["serde"] }
hex-literal = "0.4.1"
serde = { version = "1" }
serde_bytes = { version = "0.11.15" }
serde_cbor = { version = "0.11.0" }
serde_test = "1.0.176"