{"id":14972165,"url":"https://github.com/kovyrin/vitess-grpc-rust","last_synced_at":"2026-03-02T05:30:58.504Z","repository":{"id":176072053,"uuid":"648807018","full_name":"kovyrin/vitess-grpc-rust","owner":"kovyrin","description":"Auto-generated client for the Vitess gRPC protocol","archived":false,"fork":false,"pushed_at":"2024-04-05T16:11:47.000Z","size":584,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-02T02:57:35.642Z","etag":null,"topics":["client","grpc","rust","vitess"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/vitess-grpc","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/kovyrin.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}},"created_at":"2023-06-02T21:36:00.000Z","updated_at":"2023-06-17T11:05:12.000Z","dependencies_parsed_at":"2024-10-11T06:40:54.760Z","dependency_job_id":"b3cf5931-ecac-44e7-a55c-61ae0dac82a8","html_url":"https://github.com/kovyrin/vitess-grpc-rust","commit_stats":{"total_commits":126,"total_committers":6,"mean_commits":21.0,"dds":"0.46031746031746035","last_synced_commit":"11c1053a089a5f94245af20e408540eb2518f32c"},"previous_names":["kovyrin/vitess-grpc-rust"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kovyrin/vitess-grpc-rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kovyrin%2Fvitess-grpc-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kovyrin%2Fvitess-grpc-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kovyrin%2Fvitess-grpc-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kovyrin%2Fvitess-grpc-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kovyrin","download_url":"https://codeload.github.com/kovyrin/vitess-grpc-rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kovyrin%2Fvitess-grpc-rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29993376,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"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":["client","grpc","rust","vitess"],"created_at":"2024-09-24T13:46:29.173Z","updated_at":"2026-03-02T05:30:58.487Z","avatar_url":"https://github.com/kovyrin.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gRPC Client for Vitess\n\n[![Crates.io](https://img.shields.io/crates/v/vitess-grpc)](https://crates.io/crates/vitess-grpc)\n[![Docs.rs](https://docs.rs/vitess-grpc/badge.svg)](https://docs.rs/vitess-grpc)\n[![Tests](https://github.com/kovyrin/vitess-grpc-rust/actions/workflows/test.yml/badge.svg)](https://github.com/kovyrin/vitess-grpc-rust/actions/workflows/test.yml)\n[![Checks](https://github.com/kovyrin/vitess-grpc-rust/actions/workflows/check.yml/badge.svg)](https://github.com/kovyrin/vitess-grpc-rust/actions/workflows/check.yml)\n\nThis is a Rust gRPC client for Vitess. It is generated from the Vitess proto files using\n[tonic](https://github.com/hyperium/tonic).\n\n## Usage\n\nTo use this crate, add the following to your Cargo.toml:\n\n```toml\n[dependencies]\nvitess-grpc = \"0.3\"\ntokio = { version = \"1.0\", features = [\"full\"] }\n```\n\n## Example\n\nYou can find an example of how to use this crate in the [examples](vitess-grpc/examples) directory.\n\nExamples can be run with:\n\n```shell\ncargo run --example \u003cexample_name\u003e\n```\n\nAvailable examples are:\n* [vstream-consumer](vitess-grpc/examples/vstream.rs): A simple vstream consumer, which prints the events it receives.\n\n\nBefore running the examples, you will need to start Vitess locally. An easy way to do this is to use the `scripts/start-vttestserver` script, which will start a local Vitess cluster in Docker (or Podman) and configure a simple schema inside you can use for testing.\n\n## Versioning\n\nThe version of the crate is independent of the version of Vitess, but contains a build metadata portion (see [SemVer documentation](https://semver.org/#spec-item-10) for details) that is set to the Vitess version the crate was generated from. For example, the version `0.3.0+vitess18.0.0` means that the crate was generated from the proto files included in Vitess v18.0.0.\n\n## License\n\nThe files in the `proto` directory are copied from the [Vitess repository](https://github.com/vitessio/vitess/tree/main/proto) and are licensed under the Apache License, Version 2.0. See the\n[Vitess LICENSE](https://github.com/vitessio/vitess/blob/main/LICENSE) file for more details.\n\nThe rest of the code in this repository is licensed under the MIT license. See the [LICENSE](LICENSE) file for more details.\n\n## Vitess Update Process\n\nWhen a new version of Vitess is released, the following steps should be taken to update this crate:\n\n1. Update the `version` in vitess-grpc/Cargo.toml to the new Vitess version.\n2. Run `script/update-protos` to update the proto files in the `vitess-grpc/proto` directory.\n3. Run `cargo build` to make sure the crate builds.\n4. Run `scripts/start-vttestserver` to start a local Vitess cluster used for testing.\n5. Run `cargo test` to make sure the tests pass.\n6. Stop the local Vitess cluster by running `scripts/stop-vttestserver`.\n7. Commit the changes and push them to GitHub.\n8. Change directory to `vitess-grpc`\n9. Publish the crate to crates.io with `cargo publish`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkovyrin%2Fvitess-grpc-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkovyrin%2Fvitess-grpc-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkovyrin%2Fvitess-grpc-rust/lists"}