From 0381b1e4dbf1bef82861be2a8b56405bd8fc2402 Mon Sep 17 00:00:00 2001 From: Patrick Thomson Date: Fri, 26 Jan 2024 09:32:47 -0500 Subject: [PATCH] Fill out package description fields. --- crates/twirp-build/Cargo.toml | 5 +++++ crates/twirp/Cargo.toml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/crates/twirp-build/Cargo.toml b/crates/twirp-build/Cargo.toml index 1206b77..43f1ae7 100644 --- a/crates/twirp-build/Cargo.toml +++ b/crates/twirp-build/Cargo.toml @@ -3,6 +3,11 @@ name = "twirp-build" version = "0.2.0" authors = ["The blackbird team "] edition = "2021" +description = "Code generation for async-compatible Twirp RPC interfaces." +readme = "README.md" +keywords = ["twirp"] +categories = ["network-programming"] +repository = "https://github.com/github/twirp-rs" [dependencies] prost-build = "0.12" diff --git a/crates/twirp/Cargo.toml b/crates/twirp/Cargo.toml index 871735a..5e2559a 100644 --- a/crates/twirp/Cargo.toml +++ b/crates/twirp/Cargo.toml @@ -3,6 +3,11 @@ name = "twirp" version = "0.2.0" authors = ["The blackbird team "] edition = "2021" +description = "An async-compatible library for Twirp RPC in Rust." +readme = "README.md" +keywords = ["twirp"] +categories = ["network-programming"] +repository = "https://github.com/github/twirp-rs" [features] default = ["client", "server", "test-support"]