Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 888 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 888 Bytes

serde-redes

redes is just a random anagram of serde

This repo contains some arcane serde uses.

The ultimate goal is to allow ergonomically extending serde:

  • support some more advanced serialization (e.g. Jinja templated toml)
  • allow easily extending the existing serializers with extra features
  • add support for comments in serde output

Crates.io Version docs.rs

Define an AST representation of serde serialization.

  • define an Ast for serde serialization
  • Serializer for Ast
  • impl Serialize for Ast
  • Deserializer for Ast
  • impl Deserialize for Ast

...

More coming soon(TM).