{"id":13828814,"url":"https://github.com/rust-syndication/syndication","last_synced_at":"2026-03-11T06:31:27.712Z","repository":{"id":46188841,"uuid":"42206589","full_name":"rust-syndication/syndication","owner":"rust-syndication","description":"Library for serializing Atom and RSS web feeds","archived":false,"fork":false,"pushed_at":"2023-08-22T08:21:17.000Z","size":32,"stargazers_count":41,"open_issues_count":5,"forks_count":8,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-13T20:58:14.153Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://crates.io/crates/syndication","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rust-syndication.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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}},"created_at":"2015-09-09T21:47:11.000Z","updated_at":"2025-03-24T10:37:17.000Z","dependencies_parsed_at":"2024-02-06T05:00:18.853Z","dependency_job_id":null,"html_url":"https://github.com/rust-syndication/syndication","commit_stats":null,"previous_names":["tomshen/rust-syndication"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/rust-syndication/syndication","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-syndication%2Fsyndication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-syndication%2Fsyndication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-syndication%2Fsyndication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-syndication%2Fsyndication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rust-syndication","download_url":"https://codeload.github.com/rust-syndication/syndication/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-syndication%2Fsyndication/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30373450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-08-04T09:03:11.653Z","updated_at":"2026-03-11T06:31:27.143Z","avatar_url":"https://github.com/rust-syndication.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# rust-syndication\n\n[![Cargo Version](https://img.shields.io/crates/v/syndication.svg)](https://crates.io/crates/syndication)\n[![Build Status](https://travis-ci.org/rust-syndication/syndication.svg?branch=master)](https://travis-ci.org/rust-syndication/syndication)\n\nLibrary for serializing Atom and RSS web feeds. Wraps around [rust-atom](https://github.com/rust-syndication/atom) and [rust-rss](https://github.com/rust-syndication/rss).\n\n## Usage\n\n### Reading\n```rust\nlet atom_str = r#\"\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cfeed xmlns=\"http://www.w3.org/2005/Atom\"\u003e\n  \u003cid\u003eurn:uuid:b3420f84-6bdf-4f46-a225-f1b9a14703b6\u003c/id\u003e\n  \u003ctitle\u003eTechCrunch\u003c/title\u003e\n  \u003cupdated\u003e2019-04-01T07:30:00Z\u003c/updated\u003e\n  \u003centry\u003e\n    \u003cid\u003eurn:uuid:4ae8550b-2987-49fa-9f8c-54c180c418ac\u003c/id\u003e\n    \u003ctitle\u003eFord hires Elon Musk as CEO\u003c/title\u003e\n    \u003cupdated\u003e2019-04-01T07:30:00Z\u003c/updated\u003e\n  \u003c/entry\u003e\n\u003c/feed\u003e\n\"#;\n\nmatch atom_str.parse::\u003cFeed\u003e().unwrap() {\n    Feed::Atom(atom_feed) =\u003e println!(\"Atom feed first entry: {:?}\", atom_feed.entries[0].title),\n    _ =\u003e {}\n};\n\nlet rss_str = r#\"\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003crss version=\"2.0\"\u003e\n  \u003cchannel\u003e\n    \u003ctitle\u003eTechCrunch\u003c/title\u003e\n    \u003clink\u003ehttp://techcrunch.com\u003c/link\u003e\n    \u003cdescription\u003eThe latest technology news and information on startups\u003c/description\u003e\n    \u003citem\u003e\n      \u003ctitle\u003eFord hires Elon Musk as CEO\u003c/title\u003e\n      \u003cpubDate\u003e01 Apr 2019 07:30:00 GMT\u003c/pubDate\u003e\n      \u003cdescription\u003eIn an unprecedented move, Ford hires Elon Musk.\u003c/description\u003e\n    \u003c/item\u003e\n  \u003c/channel\u003e\n\u003c/rss\u003e\n\"#;\n\nmatch rss_str.parse::\u003cFeed\u003e().unwrap() {\n    Feed::RSS(rss_feed) =\u003e println!(\"RSS feed first entry: {:?}\",\n        rss_feed.items[0].title),\n    _ =\u003e {}\n};\n```\n\n### Writing\nCurrently not supported.\n\n## Todo\n- Parse feeds into common format.\n- Support writing feeds.\n\n## License\n\nLicensed under either of\n\n * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally\nsubmitted for inclusion in the work by you, as defined in the Apache-2.0\nlicense, shall be dual licensed as above, without any additional terms or\nconditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frust-syndication%2Fsyndication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frust-syndication%2Fsyndication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frust-syndication%2Fsyndication/lists"}