{"id":33919040,"url":"https://github.com/cloudflare/moq-rs","last_synced_at":"2026-05-20T18:10:42.107Z","repository":{"id":276822681,"uuid":"873121011","full_name":"cloudflare/moq-rs","owner":"cloudflare","description":"Rust implementation of the IETF MoQ Transport protocol","archived":false,"fork":false,"pushed_at":"2026-04-15T16:57:09.000Z","size":2283,"stargazers_count":102,"open_issues_count":44,"forks_count":37,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-04-17T00:03:23.174Z","etag":null,"topics":["livestreaming","lowlatency","mediaoverquic","moq","quic"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudflare.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/Apache-2.0.txt","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-10-15T16:27:12.000Z","updated_at":"2026-04-13T19:10:51.000Z","dependencies_parsed_at":"2025-02-10T17:22:42.174Z","dependency_job_id":"095b7ba3-64ef-4f27-bf02-4078656b5964","html_url":"https://github.com/cloudflare/moq-rs","commit_stats":null,"previous_names":["englishm/moq-rs","cloudflare/moq-rs"],"tags_count":110,"template":false,"template_full_name":null,"purl":"pkg:github/cloudflare/moq-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudflare%2Fmoq-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudflare%2Fmoq-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudflare%2Fmoq-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudflare%2Fmoq-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudflare","download_url":"https://codeload.github.com/cloudflare/moq-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudflare%2Fmoq-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33268305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-20T15:12:43.734Z","status":"ssl_error","status_checked_at":"2026-05-20T15:12:42.300Z","response_time":356,"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":["livestreaming","lowlatency","mediaoverquic","moq","quic"],"created_at":"2025-12-12T08:39:44.341Z","updated_at":"2026-05-20T18:10:42.089Z","avatar_url":"https://github.com/cloudflare.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# moq-rs\n\nAn implementation of the Media over QUIC Transport (MoQT) protocol for live media delivery over QUIC, as specified by the IETF MoQ working group.\n\nThis codebase was originally created by [Luke Curley (@kixelated)](https://github.com/kixelated). [Mike English (@englishm)](https://github.com/englishm) contributed to early design and has maintained this IETF-aligned fork. The project is now maintained by Cloudflare. The implementation targets [draft-ietf-moq-transport-14](https://datatracker.ietf.org/doc/draft-ietf-moq-transport/14/).\n\n## Protocol Support\n\nThe `main` branch targets **draft-14** of the MoQT specification. For draft-07 compatibility (used in [Cloudflare's current production deployment](https://developers.cloudflare.com/moq/)), see the [`draft-ietf-moq-transport-07`](https://github.com/cloudflare/moq-rs/tree/draft-ietf-moq-transport-07) branch.\n\n### What's Included\n\nThis repository provides:\n- **moq-transport**: A complete MoQT protocol library implementation\n- **moq-relay-ietf**: A production-ready relay server\n- **Sample clients**: An fMP4 publisher (moq-pub) and a demonstration clock application (moq-clock-ietf)\n\n### Protocol Feature Support\n\n**Supported:**\n- CLIENT_SETUP / SERVER_SETUP\n- PUBLISH_NAMESPACE\n- SUBSCRIBE\n- WebTransport and raw QUIC transport layers\n- Both stream (\"subgroup\") and datagram delivery modes\n\n**Not Supported:**\n- SUBSCRIBE_NAMESPACE (Soon)\n- FETCH (Not Soon)\n\n## Interoperability\n\nA public relay instance running the latest `main` branch is available for interop testing at:\n```\nhttps://interop-relay.cloudflare.mediaoverquic.com:443\n```\n\nAs an implementation targeting the IETF specification, this codebase should be compatible with other implementations targeting the same draft version. See the [moq-wg/moq-transport wiki](https://github.com/moq-wg/moq-transport/wiki/Interop) for a list of other implementations.\n\nFor streaming format compatibility:\n- **[video-dev/moq-js](https://github.com/video-dev/moq-js)**: A TypeScript player implementation compatible with moq-pub's fMP4 output. Check draft version compatibility when selecting branches.\n- **[gst-moq-pub](https://github.com/rafaelcaricio/gst-moq-pub)**: A GStreamer publisher plugin built on moq-pub, also compatible with moq-js.\n\n## Components\n\nThis repository contains several crates:\n\n- **moq-transport**: A media-agnostic library implementing the core MoQT protocol.\n  - **moq-native-ietf**: QUIC and TLS utilities for native transport.\n- **moq-relay-ietf**: A relay server that forwards content from publishers to subscribers, with caching and deduplication.\n  - **moq-api**: An HTTP API server for origin discovery and relay coordination, backed by Redis.\n- **moq-pub**: A publisher client that broadcasts fMP4 streams over MoQT.\n  - **moq-catalog**: Catalog format handling.\n  - **moq-sub**: A subscriber client for consuming MoQT streams.\n- **moq-clock-ietf**: A simple time publisher/subscriber demonstrating non-media use cases.\n\n## Development\n\nTypical development workflow:\n\n1. Start a local relay in one terminal:\n   ```bash\n   ./dev/relay\n   ```\n\n2. Start a publisher in another terminal:\n   ```bash\n   ./dev/pub\n   ```\n   Add `--tls-disable-verify` if you prefer not to install local certificates.\n\n3. For playback, clone and run [moq-js](https://github.com/video-dev/moq-js) locally, then open it in a browser pointed at your local relay.\n\nSee the [dev helper scripts](dev/README.md) for more options and workflows.\n\n## Usage\n\nFor detailed usage information, see the README in each crate directory:\n- [moq-transport](moq-transport/README.md) - Protocol library documentation\n- [moq-relay-ietf](moq-relay-ietf/README.md) - Relay server configuration\n- [moq-pub](moq-pub/README.md) - Publisher client usage\n\nThe moq-transport crate is also published on [crates.io](https://crates.io/crates/moq-transport) with [API documentation](https://docs.rs/moq-transport/latest/moq_transport/).\n\n## License\n\nLicensed under either:\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudflare%2Fmoq-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudflare%2Fmoq-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudflare%2Fmoq-rs/lists"}