File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,21 @@ interface for marshaling Nim values to and from various serialized formats.
1212Individual formats are implemented in separated packages such as
1313[ ` json_serialization ` ] ( https://github.com/status-im/nim-json-serialization )
1414while this package provides the common interfaces shared between all of them
15- and the means to customize your Nim types for the purposes of serialization.
15+ and the means to customize your Nim types for the purpose of serialization.
1616
1717The internal mechanisms of the library allow for implementing the required
1818marshaling logic in highly efficient way that goes from bytes to Nim values
1919and vice versa without allocating any intermediate structures.
2020
21+ ## Available serialization formats
22+
23+ * [ JSON] ( https://github.com/status-im/nim-json-serialization )
24+ * [ TOML] ( https://github.com/status-im/nim-toml-serialization )
25+ * [ Protobuf] ( https://github.com/status-im/nim-protobuf-serialization )
26+ * [ SSZ] ( https://github.com/status-im/nim-ssz-serialization )
27+
28+ Submit a PR to add yours!
29+
2130## Defining serialization formats
2231
2332A serialization format is implemented through defining a ` Reader ` and ` Writer `
@@ -119,8 +128,6 @@ When submitting pull requests, please add test cases for any new features
119128or fixes and make sure ` nimble test ` is still able to execute the entire
120129test suite successfully.
121130
122- [ BOUNTIES ] : https://github.com/status-im/nim-confutils/issues?q=is%3Aissue+is%3Aopen+label%3Abounty
123-
124131## License
125132
126133Licensed and distributed under either of
You can’t perform that action at this time.
0 commit comments