2 个稳定版本

2.0.0 2022年9月8日
1.0.0 2019年12月4日

#32 in #convert-json

21 月下载量

0BSD 许可证

5KB
63 代码行

JSON2CBOR

该仓库包含两个非常简单的程序,用于将 JSON 转换为 CBOR 以及相反操作。它使用 serde-transcode 进行转换。

安装

  1. 安装 Rust.
  2. cargo安装 json2cbor.

使用

json2cborcbor2json 具有相同的标志和参数

默认读取/写入 stdin/stdout

echo '{"foo":"bar"}' | json2cbor | cbor2json
# Output: {"foo":"bar"}

从输入文件读取

json2cbor in.json

写入输出文件

echo '{"foo":"bar"}' | json2cbor -o out.cbor

读取和写入文件

json2cbor -o out.cbor in.json

获取帮助

json2cbor --help

依赖项

~4.5MB
~86K SLoC