8个版本 (4个破坏性更新)
新 0.97.1 | 2024年8月21日 |
---|---|
0.97.0 |
|
0.96.1 | 2024年7月29日 |
0.95.0 | 2024年6月25日 |
0.93.0 | 2024年4月30日 |
#1591 in 解析器实现
每月下载量3,495
在 7 个crate中使用了(通过 nu-command)
2MB
43K SLoC
支持NUON格式。
NUON格式是JSON的超集,旨在符合Nushell的感觉。其一些额外功能包括
- 允许尾随逗号
- 列表中的逗号是可选的
- 键或任何不包含空格或特殊字符的裸字符串不需要引号
- 允许注释,但在使用
from_nuon
时不会被保留
示例
以下是一些JSON格式的数据
{
"name": "Some One",
"birth": "1970-01-01",
"stats": [
2544729499973429198,
687051042647753531,
6702443901704799912
]
}
以及等效的NUON数据
{
name: "Some One", # the name of the person
birth: "1970-01-01", # their date of birth
stats: [ # some dummy "stats" about them
2544729499973429198,
687051042647753531,
6702443901704799912, # note the trailing comma here...
], # and here
} # wait, are these comments in a JSON-like document?!?!
依赖项
~22–56MB
~1M SLoC