Skip to content

Commit e201edc

Browse files
authored
Update README.md (#83)
1 parent 9590777 commit e201edc

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,21 @@ interface for marshaling Nim values to and from various serialized formats.
1212
Individual formats are implemented in separated packages such as
1313
[`json_serialization`](https://github.com/status-im/nim-json-serialization)
1414
while 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

1717
The internal mechanisms of the library allow for implementing the required
1818
marshaling logic in highly efficient way that goes from bytes to Nim values
1919
and 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

2332
A 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
119128
or fixes and make sure `nimble test` is still able to execute the entire
120129
test suite successfully.
121130

122-
[BOUNTIES]: https://github.com/status-im/nim-confutils/issues?q=is%3Aissue+is%3Aopen+label%3Abounty
123-
124131
## License
125132

126133
Licensed and distributed under either of

0 commit comments

Comments
 (0)