{"id":13566357,"url":"https://github.com/oxigraph/rio","last_synced_at":"2025-04-04T00:30:35.134Z","repository":{"id":38027972,"uuid":"198888821","full_name":"oxigraph/rio","owner":"oxigraph","description":"RDF parsers library","archived":false,"fork":false,"pushed_at":"2024-12-30T03:37:41.000Z","size":719,"stargazers_count":87,"open_issues_count":16,"forks_count":10,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-04-02T00:07:32.462Z","etag":null,"topics":["n-quads","n-triples","parser","rdf","rdf-xml","rust","trig","turtle"],"latest_commit_sha":null,"homepage":"","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/oxigraph.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2019-07-25T19:18:32.000Z","updated_at":"2025-03-07T10:55:17.000Z","dependencies_parsed_at":"2023-11-12T10:26:48.986Z","dependency_job_id":"e4ce1a58-2bea-4c71-b0ce-67ed3d1c7287","html_url":"https://github.com/oxigraph/rio","commit_stats":{"total_commits":222,"total_committers":10,"mean_commits":22.2,"dds":0.4504504504504504,"last_synced_commit":"3bd01c2c977a0b01c918f6840cd05356477db358"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxigraph%2Frio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxigraph%2Frio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxigraph%2Frio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxigraph%2Frio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oxigraph","download_url":"https://codeload.github.com/oxigraph/rio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247103305,"owners_count":20884023,"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":["n-quads","n-triples","parser","rdf","rdf-xml","rust","trig","turtle"],"created_at":"2024-08-01T13:02:07.825Z","updated_at":"2025-04-04T00:30:34.072Z","avatar_url":"https://github.com/oxigraph.png","language":"Rust","readme":"Rio\n===\n\n[![actions status](https://github.com/oxigraph/rio/workflows/build/badge.svg)](https://github.com/oxigraph/rio/actions)\n\n\u003cstrong\u003e\n\nWarning: Rio is deprecated.\nPlease use instead [oxrdfio](https://docs.rs/oxrdfio)\nor the more specific crates [oxttl](https://docs.rs/oxttl) and [oxrdfxml](https://docs.rs/oxrdfxml).\n\u003c/strong\u003e\n\nRio is a low level library which provides conformant and fast parsers and formatters for RDF related file formats.\n\nThese libraries are going to be replaced by the [oxttl](https://crates.io/crates/oxttl) and [oxrdfxml](https://crates.io/crates/oxrdfxml) libraries.\n\nIt currently provides [N-Triples](https://docs.rs/rio_turtle/latest/rio_turtle/struct.NTriplesParser.html), [N-Quads](https://docs.rs/rio_turtle/latest/rio_turtle/struct.NQuadsParser.html), [Turtle](https://docs.rs/rio_turtle/latest/rio_turtle/struct.TurtleParser.html), [TriG](https://docs.rs/rio_turtle/latest/rio_turtle/struct.TrigParser.html) and [RDF/XML](https://docs.rs/rio_xml/latest/rio_xml/struct.RdfXmlParser.html) parsers and formatters.\n\nIt is split into multiple crates:\n* `rio_api` provides common traits and data structures to be used in Rio parsers (`Triple`, `TriplesParser`, `Iri`...).\n  [![Latest Version](https://img.shields.io/crates/v/rio_api.svg)](https://crates.io/crates/rio_api) \n  [![Released API docs](https://docs.rs/rio_api/badge.svg)](https://docs.rs/rio_api)\n* `rio_turtle` provides conformant streaming parsers and formatters for [Turtle](https://www.w3.org/TR/turtle/), [TriG](https://www.w3.org/TR/trig/), [N-Triples](https://www.w3.org/TR/n-triples/) and [N-Quads](https://www.w3.org/TR/n-quads/).\n  [RDF-star](https://w3c.github.io/rdf-star/cg-spec/) syntaxes are also supported: [Turtle-star](https://w3c.github.io/rdf-star/cg-spec/#turtle-star), [TriG-star](https://w3c.github.io/rdf-star/cg-spec/#trig-star), [N-Triples-star](https://w3c.github.io/rdf-star/cg-spec/#n-triples-star) and [N-Quads-star](https://w3c.github.io/rdf-star/cg-spec/#n-quads-star).\n  [![Latest Version](https://img.shields.io/crates/v/rio_turtle.svg)](https://crates.io/crates/rio_turtle)\n  [![Released API docs](https://docs.rs/rio_turtle/badge.svg)](https://docs.rs/rio_turtle)\n* `rio_xml` provides a conformant streaming parser and a formatter for [RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/).\n  [![Latest Version](https://img.shields.io/crates/v/rio_xml.svg)](https://crates.io/crates/rio_xml)\n  [![Released API docs](https://docs.rs/rio_xml/badge.svg)](https://docs.rs/rio_xml)\n\nThere is also the `rio_testsuite` crate that is used for testing Rio parsers against the [W3C RDF tests](http://w3c.github.io/rdf-tests/) to ensure their conformance.\nIt provides both an executable for building implementation reports and integration test to quickly ensure that the parsers stay conformant.\nIt is not designed to be used outside of Rio.\n\n\n## License\n\nCopyright 2019-2021 The Rio developers.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","funding_links":[],"categories":["rust","Programming","Rust"],"sub_categories":["Rust"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxigraph%2Frio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foxigraph%2Frio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxigraph%2Frio/lists"}