{"id":25598202,"url":"https://github.com/code0-tech/tucana","last_synced_at":"2026-04-01T21:58:11.926Z","repository":{"id":248264982,"uuid":"824251038","full_name":"code0-tech/tucana","owner":"code0-tech","description":"GRPC interface library","archived":false,"fork":false,"pushed_at":"2026-03-24T12:33:23.000Z","size":581,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-24T18:23:24.997Z","etag":null,"topics":["grpc","grpc-ruby","grpc-rust","ruby","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/code0-tech.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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-04T17:25:41.000Z","updated_at":"2026-03-24T12:25:32.000Z","dependencies_parsed_at":"2026-01-16T14:02:40.377Z","dependency_job_id":null,"html_url":"https://github.com/code0-tech/tucana","commit_stats":null,"previous_names":["code0-tech/tucana"],"tags_count":62,"template":false,"template_full_name":null,"purl":"pkg:github/code0-tech/tucana","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code0-tech%2Ftucana","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code0-tech%2Ftucana/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code0-tech%2Ftucana/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code0-tech%2Ftucana/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code0-tech","download_url":"https://codeload.github.com/code0-tech/tucana/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code0-tech%2Ftucana/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31106013,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-28T15:10:22.084Z","status":"ssl_error","status_checked_at":"2026-03-28T15:09:59.994Z","response_time":79,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["grpc","grpc-ruby","grpc-rust","ruby","rust"],"created_at":"2025-02-21T13:30:51.082Z","updated_at":"2026-04-01T21:58:11.909Z","avatar_url":"https://github.com/code0-tech.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# Tucana\n\nThis repository is responsible for all gRPC definitions that we use.\n\n## Setup\n\nSee the setup guide for the following languages. Support for other languages is not planed!\n\n### Rust\n\nSee: [Crate](https://crates.io/crates/tucana)\n\n```toml\n[dependencies]\ntucana = { version = \"\u003cversion\u003e\" }\n```\n\nTo enable additional features::\n\n```toml\n[dependencies]\ntucana = { version = \"\u003cversion\u003e\", features = [\"sagittarius\", \"aquila\"] }\n```\n\n### Ruby\n\nSee: [Gem](https://rubygems.org/gems/tucana)\n\n```ruby\ngem 'tucana', '\u003cversion\u003e'\n```\n\nDon't forget to initialize the required feature:\n```ruby\n# For Sagittarius\nTucana.load_protocol(:sagittarius)\n\n# For Aquila\nTucana.load_protocol(:aquila)\n```\n\n## Project Structure\n\nThe project is organized with services functioning as servers. Each protocol in the Sagittarius folder corresponds to\nservices that Sagittarius must implement as a server.\n\n```ascii-tree\n.\n├── aquila\n│   ├── action - Action service (emits events, and handles executions)\n│   ├── action_configuration - ActionConfiguration service \n│   ├── data_type - DataType service\n│   ├── flow_definition - FlowType service (handles flow_type updates)\n│   ├── runtime_function - Service for updating the runtime functions\n│   ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)\n│   └── runtime_usage - Service for runtime usage (handles execution time of a flow)\n├── sagittarius\n│   ├── action_configuration - ActionConfiguration service \n│   ├── data_type - DataType service\n│   ├── flow - Flow service (handles flow updates)\n│   ├── flow_type - FlowType service (handles flow_type updates)\n│   ├── ping - Ping service (performs life checks)\n│   ├── runtime_function - Service for updating the runtime functions\n│   ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)\n│   ├── runtime_usage - Service for runtime usage (handles execution time of a flow)\n│   └── test_execution - Service and Types for the test execution\n└── shared\n    ├── action_configuration - Defines types for action configuration\n    ├── data_type - Defines types for data types\n    ├── flow - Defines types for flows\n    ├── flow_definition - Defines a definition for a Flow\n    ├── runtime_function - Defines types for runtime functions\n    ├── runtime_status - Defines types for runtime status (handles information about Draco and Taurus)\n    ├── runtime_usage - Defines types for runtime usage (handles execution time of a flow)\n    ├── struct - Defines types for json representations\n    ├── translation - Contains translations with country codes and translated messages\n    └── version - Contains verion type for definitions\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode0-tech%2Ftucana","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode0-tech%2Ftucana","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode0-tech%2Ftucana/lists"}