1 unstable release
0.1.0 | Aug 3, 2024 |
---|
#753 in Encoding
7KB
144 lines
Run
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 debugger
{
"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}"
}
]
}
Dependencies
~1.6–2.7MB
~51K SLoC