This repo contains two really simple programs to convert JSON to CBOR and vice versa. It does the transformation using serde-transcode
.
cargo install json2cbor
.json2cbor
and cbor2json
both take the same flags & arguments
```sh echo '{"foo":"bar"}' | json2cbor | cbor2json
```
sh
json2cbor in.json
sh
echo '{"foo":"bar"}' | json2cbor -o out.cbor
sh
json2cbor -o out.cbor in.json
sh
json2cbor --help