Add #[cbor(text_keys)] for automatic string-keyed map encoding#57
Open
ropuls wants to merge 3 commits into
Open
Add #[cbor(text_keys)] for automatic string-keyed map encoding#57ropuls wants to merge 3 commits into
ropuls wants to merge 3 commits into
Conversation
Build on top of the #[s("...")] string index support to add a
struct/enum-level #[cbor(text_keys)] attribute that automatically
uses field/variant names as string keys, removing the need to
annotate every field individually.
Features:
- #[cbor(text_keys)] on structs: all fields auto-keyed by name
- #[cbor(text_keys)] on enums: all variants auto-keyed by name
- #[cbor(key = "...")] for custom wire key names (per field/variant)
- text_keys implies map encoding automatically
- Unit enum variants encode as naked strings ("Reset")
- Non-unit enum variants encode as map(1) {"Name": {fields}}
Also fixes:
- Add missing `s` attribute to CborLen proc_macro_derive
Validation:
- text_keys on tuple/unit structs: compile error
- text_keys + transparent / index_only: compile error
- #[cbor(key = "...")] without text_keys: compile error
- Duplicate key names: compile error
Tests: 40 host tests + 36 STM32H563ZI (Cortex-M33) no_std tests
Signed-off-by: Roman Puls <ropuls@users.noreply.github.com>
Signed-off-by: Roman Puls <ropuls@users.noreply.github.com>
Signed-off-by: Roman Puls <ropuls@users.noreply.github.com>
ropuls
force-pushed
the
feature/text-keys
branch
from
March 15, 2026 14:11
3e55890 to
0f0848c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Build on top of the #[s("...")] string index support to add a struct/enum-level #[cbor(text_keys)] attribute that automatically uses field/variant names as string keys, removing the need to annotate every field individually.
Features:
Also fixes:
sattribute to CborLen proc_macro_deriveValidation:
Tests: 40 host tests + 36 STM32H563ZI (Cortex-M33) no_std tests