{"id":50336194,"url":"https://github.com/YGGverse/ggemini","last_synced_at":"2026-06-15T04:01:05.091Z","repository":{"id":258408682,"uuid":"874933974","full_name":"YGGverse/ggemini","owner":"YGGverse","description":"Glib-oriented client for Gemini protocol","archived":false,"fork":false,"pushed_at":"2026-05-12T06:58:47.000Z","size":309,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-05-12T07:18:49.497Z","etag":null,"topics":["async","client","gemini","gemini-protocol","gio","glib","gtk","socket","titan","tls"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/ggemini","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/YGGverse.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"custom":"https://yggverse.github.io/#donate"}},"created_at":"2024-10-18T18:24:15.000Z","updated_at":"2026-05-12T06:57:11.000Z","dependencies_parsed_at":"2024-11-16T17:14:20.602Z","dependency_job_id":"e6f74f69-5ccd-41b0-a9a3-d5f62c1426d3","html_url":"https://github.com/YGGverse/ggemini","commit_stats":null,"previous_names":["yggverse/ggemini"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/YGGverse/ggemini","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YGGverse%2Fggemini","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YGGverse%2Fggemini/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YGGverse%2Fggemini/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YGGverse%2Fggemini/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YGGverse","download_url":"https://codeload.github.com/YGGverse/ggemini/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YGGverse%2Fggemini/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34346870,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["async","client","gemini","gemini-protocol","gio","glib","gtk","socket","titan","tls"],"created_at":"2026-05-29T14:00:19.060Z","updated_at":"2026-06-15T04:01:05.061Z","avatar_url":"https://github.com/YGGverse.png","language":"Rust","funding_links":["https://yggverse.github.io/#donate"],"categories":["Programming"],"sub_categories":["Graphical"],"readme":"# ggemini\n\n![build](https://github.com/YGGverse/ggemini/actions/workflows/build.yml/badge.svg)\n[![dependencies](https://deps.rs/repo/github/YGGverse/ggemini/status.svg)](https://deps.rs/repo/github/YGGverse/ggemini)\n[![documentation](https://docs.rs/ggemini/badge.svg)](https://docs.rs/ggemini)\n[![crates.io](https://img.shields.io/crates/v/ggemini.svg)](https://crates.io/crates/ggemini)\n\nGlib/Gio-oriented network API for [Gemini protocol](https://geminiprotocol.net/)\n\n\u003e [!IMPORTANT]\n\u003e Project in development!\n\u003e\n\nGGemini (or G-Gemini) library written as the client extension for [Yoda](https://github.com/YGGverse/Yoda), it also could be useful for other GTK-based applications dependent of [glib](https://crates.io/crates/glib) / [gio](https://crates.io/crates/gio) (`2.66+`) backend.\n\n## Requirements\n\n\u003cdetails\u003e\n\u003csummary\u003eDebian\u003c/summary\u003e\n\u003cpre\u003e\nsudo apt install libglib2.0-dev\u003c/pre\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eFedora\u003c/summary\u003e\n\u003cpre\u003e\nsudo dnf install glib2-devel\u003c/pre\u003e\n\u003c/details\u003e\n\n## Install\n\n```\ncargo add ggemini\n```\n\n## Usage\n\n* [Documentation](https://docs.rs/ggemini/latest/ggemini/)\n\n### Example\n\n``` rust\nuse gio::*;\nuse glib::*;\n\nuse ggemini::client::{\n    connection::{request::{Mode, Request}, Response},\n    Client,\n};\n\nfn main() -\u003e ExitCode {\n    Client::new().request_async(\n        Request::Gemini { // or `Request::Titan`\n            uri: Uri::parse(\"gemini://geminiprotocol.net/\", UriFlags::NONE).unwrap(),\n            mode: Mode::HeaderOnly // handle content separately (based on MIME)\n        },\n        Priority::DEFAULT,\n        Cancellable::new(),\n        None, // optional auth `GTlsCertificate`\n        None, // optional TOFU `GTlsCertificate` array\n        |result| match result {\n            Ok((response, _connection)) =\u003e match response {\n                Response::Success(success) =\u003e match success.mime().unwrap().as_str() {\n                    \"text/gemini\" =\u003e todo!(),\n                    _ =\u003e todo!(),\n                },\n                _ =\u003e todo!(),\n            },\n            Err(_) =\u003e todo!(),\n        },\n    );\n    ExitCode::SUCCESS\n}\n```\n\n## Other crates\n\n* [ggemtext](https://github.com/YGGverse/ggemtext) - Glib-oriented Gemtext API","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FYGGverse%2Fggemini","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FYGGverse%2Fggemini","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FYGGverse%2Fggemini/lists"}