{"id":26199637,"url":"https://github.com/forfd8960/json-parser-rs","last_synced_at":"2026-04-25T09:36:48.844Z","repository":{"id":248321118,"uuid":"828375943","full_name":"forfd8960/json-parser-rs","owner":"forfd8960","description":"Rust Json Parser","archived":false,"fork":false,"pushed_at":"2024-08-07T13:53:19.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-08T05:19:54.720Z","etag":null,"topics":["json","parser","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/forfd8960.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-14T00:31:05.000Z","updated_at":"2024-08-07T13:53:23.000Z","dependencies_parsed_at":"2024-08-06T05:34:31.711Z","dependency_job_id":null,"html_url":"https://github.com/forfd8960/json-parser-rs","commit_stats":null,"previous_names":["forfd8960/json-parser-rs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forfd8960%2Fjson-parser-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forfd8960%2Fjson-parser-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forfd8960%2Fjson-parser-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forfd8960%2Fjson-parser-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/forfd8960","download_url":"https://codeload.github.com/forfd8960/json-parser-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243147071,"owners_count":20243746,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["json","parser","rust"],"created_at":"2025-03-12T02:59:30.917Z","updated_at":"2025-12-24T09:17:47.474Z","avatar_url":"https://github.com/forfd8960.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# json-parser-rs\n\n## Example\n\n```rust\nuse json_parser_rs::parse_json;\n\nfn main() {\n    let my_json = r#\"{\"name\":\"Alex\", \"age\": 30, \"job\":\"Software Engineer\"}\"#;\n    let json = parse_json(my_json).unwrap();\n    // parsed json: Object({\"name\": String(\"Alex\"), \"job\": String(\"Software Engineer\"), \"age\": Number(30.0)})\n    println!(\"parsed json: {:?}\", json);\n\n    let my_json1 = r#\"{\"list\":[1,3,6,9,100]}\"#;\n    let json = parse_json(my_json1).unwrap();\n    // parsed json: Object({\"list\": Array([Number(1.0), Number(3.0), Number(6.0), Number(9.0), Number(100.0)])})\n    println!(\"parsed json: {:?}\", json);\n\n    let my_json2 = r#\"[1,3,6,9,100]\"#;\n    let json = parse_json(my_json2).unwrap();\n    // parsed json: Array([Number(1.0), Number(3.0), Number(6.0), Number(9.0), Number(100.0)])\n    println!(\"parsed json: {:?}\", json);\n\n    let idea_list = r#\"{\"ideas\":[{\"id\":1,\"title\":\"idea1\",\"content\":\"content1\",\"created_at\":\"2023-07-01T00:00:00Z\",\"updated_at\":\"2023-07-01T00:00:00Z\"},{\"id\":2,\"title\":\"idea2\",\"content\":\"content2\",\"created_at\":\"2023-07-01T00:00:00Z\",\"updated_at\":\"2023-07-01T00:00:00Z\"}]}\"#;\n    let idea_list_json = parse_json(idea_list).unwrap();\n\n    // parsed json: Object({\"ideas\": Array([Object({\"created_at\": String(\"2023-07-01T00:00:00Z\"), \"content\": String(\"content1\"), \"title\": String(\"idea1\"), \"updated_at\": String(\"2023-07-01T00:00:00Z\"), \"id\": Number(1.0)}), Object({\"updated_at\": String(\"2023-07-01T00:00:00Z\"), \"title\": String(\"idea2\"), \"id\": Number(2.0), \"content\": String(\"content2\"), \"created_at\": String(\"2023-07-01T00:00:00Z\")})])})\n    println!(\"parsed json: {:?}\", idea_list_json);\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforfd8960%2Fjson-parser-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fforfd8960%2Fjson-parser-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforfd8960%2Fjson-parser-rs/lists"}