{"id":34249978,"url":"https://github.com/bearcove/rapace","last_synced_at":"2026-01-13T14:04:12.197Z","repository":{"id":328019942,"uuid":"1112441054","full_name":"bearcove/rapace","owner":"bearcove","description":"RPC / IPC over SHM, for Rust - good for plugins and such","archived":false,"fork":false,"pushed_at":"2026-01-11T19:58:38.000Z","size":7634,"stargazers_count":79,"open_issues_count":8,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-01-11T23:39:29.962Z","etag":null,"topics":["birb","ipc","rpc","rust","shm"],"latest_commit_sha":null,"homepage":"https://rapace.bearcove.eu/","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/bearcove.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE-APACHE","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":{"github":["fasterthanlime"],"patreon":"fasterthanlime"}},"created_at":"2025-12-08T16:19:37.000Z","updated_at":"2026-01-11T19:55:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bearcove/rapace","commit_stats":null,"previous_names":["bearcove/rapace"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/bearcove/rapace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Frapace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Frapace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Frapace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Frapace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bearcove","download_url":"https://codeload.github.com/bearcove/rapace/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Frapace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28387596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T13:42:20.960Z","status":"ssl_error","status_checked_at":"2026-01-13T13:42:03.276Z","response_time":56,"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":["birb","ipc","rpc","rust","shm"],"created_at":"2025-12-16T09:07:59.061Z","updated_at":"2026-01-13T14:04:12.178Z","avatar_url":"https://github.com/bearcove.png","language":"Rust","funding_links":["https://github.com/sponsors/fasterthanlime","https://patreon.com/fasterthanlime"],"categories":[],"sub_categories":[],"readme":"# rapace\n\n[![Coverage Status](https://coveralls.io/repos/github/facet-rs/rapace/badge.svg?branch=main)](https://coveralls.io/github/facet-rs/facet?branch=main)\n[![crates.io](https://img.shields.io/crates/v/rapace.svg)](https://crates.io/crates/rapace)\n[![documentation](https://docs.rs/rapace/badge.svg)](https://docs.rs/rapace)\n[![MIT/Apache-2.0 licensed](https://img.shields.io/crates/l/rapace.svg)](./LICENSE)\n[![Discord](https://img.shields.io/discord/1379550208551026748?logo=discord\u0026label=discord)](https://discord.gg/JhD7CwCJ8F)\n\nA high-performance RPC framework for Rust with support for shared memory, TCP, WebSocket, and in-process transports.\n\n## Features\n\n- **Multiple transports**: Choose the right transport for your use case\n  - Shared memory (SHM): Ultra-low latency for local processes\n  - TCP/Unix sockets: Network communication\n  - WebSocket: Browser and web clients\n  - In-memory: Testing and single-process RPC\n\n- **Streaming**: Full support for server and client streaming\n\n- **Code generation**: Write your service interface once with `#[rapace::service]`\n\n- **Type-safe**: Compile-time verification of RPC calls\n\n- **Cross-platform**: Linux, macOS, Windows, and WebAssembly\n\n## Quick Start\n\n```rust\nuse rapace::service;\nuse rapace::RpcSession;\nuse rapace_transport_mem::MemTransport;\n\n#[rapace::service]\npub trait Calculator {\n    async fn add(\u0026self, a: i32, b: i32) -\u003e i32;\n}\n\n// Implement your service...\nstruct MyCalculator;\nimpl Calculator for MyCalculator {\n    async fn add(\u0026self, a: i32, b: i32) -\u003e i32 {\n        a + b\n    }\n}\n\n// Use it with any transport\nlet (client_transport, server_transport) = MemTransport::pair();\nlet session = RpcSession::new(client_transport);\nlet client = CalculatorClient::new(session);\n```\n\n## Documentation\n\nSee the [crate documentation](https://docs.rs/rapace) and [examples](https://github.com/bearcove/rapace/tree/main/demos).\n\n## Crates\n\n- **rapace**: Main framework (re-exports transports)\n- **rapace-core**: Core types and protocols\n- **rapace-macros**: Service macro\n- **rapace-registry**: Service metadata\n- **Transports**:\n  - rapace-transport-mem\n  - rapace-transport-stream (TCP/Unix)\n  - rapace-transport-websocket\n  - rapace-transport-shm\n- **rapace-explorer**: Dynamic service discovery\n- **rapace-testkit**: Transport conformance tests\n\n## Sponsors\n\nThanks to all individual sponsors:\n\n\u003cp\u003e \u003ca href=\"https://github.com/sponsors/fasterthanlime\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/github-dark.svg\"\u003e\n\u003cimg src=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/github-light.svg\" height=\"40\" alt=\"GitHub Sponsors\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003ca href=\"https://patreon.com/fasterthanlime\"\u003e\n    \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/patreon-dark.svg\"\u003e\n    \u003cimg src=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/patreon-light.svg\" height=\"40\" alt=\"Patreon\"\u003e\n    \u003c/picture\u003e\n\u003c/a\u003e \u003c/p\u003e\n\n...along with corporate sponsors:\n\n\u003cp\u003e \u003ca href=\"https://aws.amazon.com\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/aws-dark.svg\"\u003e\n\u003cimg src=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/aws-light.svg\" height=\"40\" alt=\"AWS\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003ca href=\"https://zed.dev\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/zed-dark.svg\"\u003e\n\u003cimg src=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/zed-light.svg\" height=\"40\" alt=\"Zed\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003ca href=\"https://depot.dev?utm_source=facet\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/depot-dark.svg\"\u003e\n\u003cimg src=\"https://github.com/facet-rs/facet/raw/main/static/sponsors-v3/depot-light.svg\" height=\"40\" alt=\"Depot\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003c/p\u003e\n\n...without whom this work could not exist.\n\n## Special thanks\n\nThe facet logo was drawn by [Misiasart](https://misiasart.com/).\n\n## License\n\nLicensed under either of:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/facet-rs/facet/blob/main/LICENSE-APACHE) or \u003chttp://www.apache.org/licenses/LICENSE-2.0\u003e)\n- MIT license ([LICENSE-MIT](https://github.com/facet-rs/facet/blob/main/LICENSE-MIT) or \u003chttp://opensource.org/licenses/MIT\u003e)\n\nat your option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbearcove%2Frapace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbearcove%2Frapace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbearcove%2Frapace/lists"}