{"id":13503165,"url":"https://github.com/RReverser/serde-xml-rs","last_synced_at":"2025-03-29T13:30:50.889Z","repository":{"id":41284338,"uuid":"82204034","full_name":"RReverser/serde-xml-rs","owner":"RReverser","description":"xml-rs based deserializer for Serde (compatible with 1.0+)","archived":false,"fork":false,"pushed_at":"2023-12-07T23:12:27.000Z","size":137,"stargazers_count":282,"open_issues_count":102,"forks_count":96,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-24T05:42:10.105Z","etag":null,"topics":["deserialization","parsing","rust","serde","xml"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/serde-xml-rs","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/RReverser.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}},"created_at":"2017-02-16T16:54:58.000Z","updated_at":"2025-03-18T16:21:05.000Z","dependencies_parsed_at":"2023-01-23T20:01:07.121Z","dependency_job_id":"f4a446c8-63a3-4aed-8c5b-cb6c62d7808c","html_url":"https://github.com/RReverser/serde-xml-rs","commit_stats":{"total_commits":92,"total_committers":25,"mean_commits":3.68,"dds":0.782608695652174,"last_synced_commit":"920e54d059efe1dce4cef7f9728ef70e9d47b7b9"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fserde-xml-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fserde-xml-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fserde-xml-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fserde-xml-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RReverser","download_url":"https://codeload.github.com/RReverser/serde-xml-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246190234,"owners_count":20737999,"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":["deserialization","parsing","rust","serde","xml"],"created_at":"2024-07-31T22:02:39.688Z","updated_at":"2025-03-29T13:30:50.633Z","avatar_url":"https://github.com/RReverser.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# serde-xml-rs\n\n[![Build Status](https://travis-ci.org/RReverser/serde-xml-rs.svg?branch=master)](https://travis-ci.org/RReverser/serde-xml-rs)\n\n`xml-rs` based deserializer for Serde (compatible with 1.0)\n\n## Example usage\n\n```rust\nuse serde::{Deserialize, Serialize};\nuse serde_xml_rs::{from_str, to_string};\n\n#[derive(Debug, Serialize, Deserialize, PartialEq)]\nstruct Item {\n    name: String,\n    source: String,\n}\n\nfn main() {\n    let src = r#\"\u003cItem\u003e\u003cname\u003eBanana\u003c/name\u003e\u003csource\u003eStore\u003c/source\u003e\u003c/Item\u003e\"#;\n    let should_be = Item {\n        name: \"Banana\".to_string(),\n        source: \"Store\".to_string(),\n    };\n\n    let item: Item = from_str(src).unwrap();\n    assert_eq!(item, should_be);\n\n    let reserialized_item = to_string(\u0026item).unwrap();\n    assert_eq!(src, reserialized_item);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRReverser%2Fserde-xml-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FRReverser%2Fserde-xml-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRReverser%2Fserde-xml-rs/lists"}