1个不稳定版本

0.1.0 2024年8月3日

#340 in 编码

Download history 113/week @ 2024-07-29 20/week @ 2024-08-05

133 每月下载次数

MIT 许可证

7KB
144 代码行

运行

cargo run -- '[{"a": 4, "b": 8}, {"a":9, "b": 10}]'
cargo run '''[{
        "name": "John Doe",
        "age": 43,
        "phones": [
            "+44 1234567",
            "+44 2345678"
        ],
        "ageX": 43
    }]'''
echo '''[{
        "name": "John Doe",
        "age": 43,
        "phones": [
            "+44 1234567",
            "+44 2345678"
        ],
        "ageX": 43
    }]''' | xargs -0 cargo run

VScode调试器

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'json_to_csv'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=json_to_csv",
                    "--package=json_to_csv"
                ],
                "filter": {
                    "name": "json_to_csv",
                    "kind": "bin"
                }
            },
            "args": ["[{\"a\": 4, \"b\": 8}, {\"a\":9, \"b\": 10}]"],
            "cwd": "${workspaceFolder}"
        }
    ]
}

依赖项

~1.7–2.7MB
~52K SLoC