{"id":13804477,"url":"https://github.com/radare/v-toxml","last_synced_at":"2026-01-18T19:01:25.168Z","repository":{"id":142647748,"uuid":"262308774","full_name":"radare/v-toxml","owner":"radare","description":"V library to serialize XML documents","archived":false,"fork":false,"pushed_at":"2021-02-25T16:23:02.000Z","size":21,"stargazers_count":9,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-05T02:30:58.420Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"V","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/radare.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":"2020-05-08T11:44:18.000Z","updated_at":"2024-10-16T02:03:24.000Z","dependencies_parsed_at":"2023-08-08T01:32:17.480Z","dependency_job_id":null,"html_url":"https://github.com/radare/v-toxml","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/radare/v-toxml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radare%2Fv-toxml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radare%2Fv-toxml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radare%2Fv-toxml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radare%2Fv-toxml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/radare","download_url":"https://codeload.github.com/radare/v-toxml/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radare%2Fv-toxml/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28548943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T14:59:57.589Z","status":"ssl_error","status_checked_at":"2026-01-18T14:59:46.540Z","response_time":98,"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-04T01:00:48.552Z","updated_at":"2026-01-18T19:01:25.040Z","avatar_url":"https://github.com/radare.png","language":"V","funding_links":[],"categories":["Applications"],"sub_categories":["Serialization"],"readme":"\nXML Serialization library for V\n===============================\n\n![CI](https://github.com/radare/v-toxml/workflows/CI/badge.svg)\n\nUsage example: \n\n```go\nimport toxml\n\nfn main() {\n\tmc := main_code()\n\tx := toxml.new()\n\tx.prolog('xml', {\n\t\t'version': '1.0'\n\t\t'encoding': 'UTF-8'\n\t})\n\tx.open('testsuites', {\n\t\t'id': '20150612_170402'\n\t\t'name': 'new-config'\n\t\t'tests': '1234'\n\t\t'failures': '1234'\n\t\t'time': '1234'\n\t})\n\tx.open('testsuite', {\n\t\t'id': '20150612_170402'\n\t\t'name': 'new-config'\n\t\t'time': '1234'\n\t})\n\tx.open('testcase', {\n\t\t'id': '20150612_170402'\n\t\t'name': 'new-config'\n\t\t'time': '1234'\n\t})\n\tx.open('failure', {\n\t\t'message': 'Warning message here'\n\t\t'type': 'WARNING'\n\t})\n\tx.body('Warning')\n\tx.close()\n\tx.finish()\n\n\tprintln(x)\n}\n\n\n```\nThe output for this code is the following:\n\n```xml\n\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003ctestsuites id=\"20150612_170402\" name=\"new-config\" tests=\"1234\" failures=\"1234\" time=\"1234\"\u003e\n  \u003ctestsuite id=\"20150612_170402\" name=\"new-config\" time=\"1234\"\u003e\n    \u003ctestcase id=\"20150612_170402\" name=\"new-config\" time=\"1234\"\u003e\n      \u003cfailure message=\"Warning message here\" type=\"WARNING\"\u003e\nWarning\n      \u003c/failure\u003e\n    \u003c/testcase\u003e\n  \u003c/testsuite\u003e\n\u003c/testsuites\u003e\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fradare%2Fv-toxml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fradare%2Fv-toxml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fradare%2Fv-toxml/lists"}