An open API service indexing awesome lists of open source software.

https://github.com/zduny/kodec

Simple crate defining common interface for encoders and decoders.
https://github.com/zduny/kodec

binary codec decoding encoding json rust

Last synced: about 1 month ago
JSON representation

Simple crate defining common interface for encoders and decoders.

Awesome Lists containing this project

README

          

# kodec

[![Test Status](https://github.com/zduny/kodec/actions/workflows/rust.yml/badge.svg)](https://github.com/zduny/kodec/actions)
[![Crate](https://img.shields.io/crates/v/kodec.svg)](https://crates.io/crates/kodec)
[![API](https://docs.rs/kodec/badge.svg)](https://docs.rs/kodec)

Simple crate defining common interface for encoders and decoders.

Also provides JSON and binary (bincode) codec implementations that can be enabled with `json` and/or `binary` features.

[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/O5O31JYZ4)

## example

See [rust-webapp-template](https://github.com/zduny/rust-webapp-template)

## see also
[Serde](https://serde.rs/)

[Serde JSON](https://github.com/serde-rs/json)

[Bincode](https://github.com/bincode-org/bincode)