74 lines
1.3 KiB
JSON
74 lines
1.3 KiB
JSON
{
|
|
"library": "fast-json-parser",
|
|
"version": "1.0.0",
|
|
"description": "A minimal but fast JSON parser for C++20",
|
|
"active": true,
|
|
"deprecated": false,
|
|
"rating": null,
|
|
"downloads": 1250000,
|
|
"size_mb": 15.7,
|
|
"pi": 3.14159265359,
|
|
"scientific": 6.022e23,
|
|
"negative": -273.15,
|
|
"zero": 0,
|
|
"features": [
|
|
"fast parsing",
|
|
"C++20 compatible",
|
|
"minimal dependencies",
|
|
"file I/O support",
|
|
"unicode handling"
|
|
],
|
|
"benchmarks": {
|
|
"small_files": {
|
|
"time_ms": 0.45,
|
|
"memory_kb": 128
|
|
},
|
|
"large_files": {
|
|
"time_ms": 15.2,
|
|
"memory_kb": 2048
|
|
}
|
|
},
|
|
"supported_types": [
|
|
"null",
|
|
"boolean",
|
|
"number",
|
|
"string",
|
|
"array",
|
|
"object"
|
|
],
|
|
"unicode_test": "Hello 世界 🌍 \u0048\u0065\u006C\u006C\u006F",
|
|
"escape_test": "Line 1\\nLine 2\\tTabbed\\r\\nWindows Line\\b\\f\"Quoted\"\\/Slash\\\\Backslash",
|
|
"empty_containers": {
|
|
"empty_array": [],
|
|
"empty_object": {}
|
|
},
|
|
"nested_structure": {
|
|
"level1": {
|
|
"level2": {
|
|
"level3": {
|
|
"deep_value": "found me!",
|
|
"deep_array": [1, 2, [3, 4, [5]]]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"mixed_array": [
|
|
42,
|
|
"string",
|
|
true,
|
|
null,
|
|
{
|
|
"nested_key": "nested_value"
|
|
},
|
|
[1, 2, 3]
|
|
],
|
|
"author": {
|
|
"name": "Developer",
|
|
"contact": {
|
|
"email": "dev@example.com",
|
|
"social": ["github", "twitter"]
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"tags": ["json", "parser", "cpp", "fast", "minimal"]
|
|
} |