{"id":16473335,"url":"https://github.com/vikpe/quake_serverinfo","last_synced_at":"2026-03-03T20:07:59.009Z","repository":{"id":236515398,"uuid":"792769734","full_name":"vikpe/quake_serverinfo","owner":"vikpe","description":"A Rust crate for parsing QuakeWorld serverinfo strings.","archived":false,"fork":false,"pushed_at":"2025-05-27T12:45:10.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T07:45:48.424Z","etag":null,"topics":["quake","quakeworld","servers"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/quake_serverinfo","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/vikpe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.YML","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},"funding":{"open_collective":"quakeworld"}},"created_at":"2024-04-27T14:27:36.000Z","updated_at":"2025-05-27T12:45:14.000Z","dependencies_parsed_at":"2025-02-12T16:34:58.400Z","dependency_job_id":"e3d81541-733a-48fb-92c0-5428f1413127","html_url":"https://github.com/vikpe/quake_serverinfo","commit_stats":null,"previous_names":["vikpe/quake_serverinfo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vikpe/quake_serverinfo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fquake_serverinfo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fquake_serverinfo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fquake_serverinfo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fquake_serverinfo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vikpe","download_url":"https://codeload.github.com/vikpe/quake_serverinfo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fquake_serverinfo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30057885,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["quake","quakeworld","servers"],"created_at":"2024-10-11T12:26:24.706Z","updated_at":"2026-03-03T20:07:58.982Z","avatar_url":"https://github.com/vikpe.png","language":"Rust","funding_links":["https://opencollective.com/quakeworld"],"categories":[],"sub_categories":[],"readme":"# quake_serverinfo [![Test](https://github.com/vikpe/quake_serverinfo/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/vikpe/quake_serverinfo/actions/workflows/test.yml) [![crates](https://img.shields.io/crates/v/quake_serverinfo)](https://crates.io/crates/quake_serverinfo) [![docs.rs](https://img.shields.io/docsrs/quake_serverinfo)](https://docs.rs/quake_serverinfo/)\n\n\u003e Parse QuakeWorld serverinfo strings\n\n## Usage\n\n```rust\nuse quake_serverinfo::Settings;\n\nlet settings = Settings::from(r#\"\\maxfps\\77\\matchtag\\kombat\"#);\nassert_eq!(settings.maxfps, Some(77));\nassert_eq!(settings.matchtag, Some(\"kombat\".to_string()));\n```\n\n## Fields\n\n```rust\npub struct Settings {\n    pub admin: Option\u003cString\u003e,\n    pub deathmatch: Option\u003ci32\u003e,\n    pub epoch: Option\u003ci32\u003e,\n    pub fpd: Option\u003ci32\u003e,\n    pub fraglimit: Option\u003ci32\u003e,\n    pub gamedir: Option\u003cString\u003e,\n    pub hostname: Option\u003cString\u003e,\n    pub ktxmode: Option\u003cString\u003e,\n    pub ktxver: Option\u003cString\u003e,\n    pub map: Option\u003cString\u003e,\n    pub matchtag: Option\u003cString\u003e,\n    pub maxclients: Option\u003ci32\u003e,\n    pub maxfps: Option\u003ci32\u003e,\n    pub maxspectators: Option\u003ci32\u003e,\n    pub mode: Option\u003cString\u003e,\n    pub needpass: Option\u003ci32\u003e,\n    pub pm_ktjump: Option\u003ci32\u003e,\n    pub progs: Option\u003cString\u003e,\n    pub qvm: Option\u003cString\u003e,\n    pub status: Option\u003cString\u003e,\n    pub serverdemo: Option\u003cString\u003e,\n    pub sv_antilag: Option\u003ci32\u003e,\n    pub teamplay: Option\u003ci32\u003e,\n    pub timelimit: Option\u003ci32\u003e,\n    pub version: Option\u003cString\u003e,\n    pub z_ext: Option\u003ci32\u003e,\n}\n```\n\n## See also\n\n* [quake_infostring](https://github.com/vikpe/quake_infostring) - Parse QuakeWorld info strings\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikpe%2Fquake_serverinfo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvikpe%2Fquake_serverinfo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikpe%2Fquake_serverinfo/lists"}