From efcc914e658d5c0b7d21c5c0341f8f7967be7f98 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Mon, 6 Feb 2017 18:38:24 -0800 Subject: [PATCH 1/3] Add categories to Cargo.toml. Also remove a keyword because 5's the limit. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 477290c..d83c0fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,8 @@ license = "MIT" documentation = "https://docs.rs/tarpc" homepage = "https://github.com/google/tarpc" repository = "https://github.com/google/tarpc" -keywords = ["rpc", "protocol", "remote", "procedure", "serialize", "tls"] +keywords = ["rpc", "remote", "procedure", "protocol", "tls"] +categories = ["asynchronous", "network-programming"] readme = "README.md" description = "An RPC framework for Rust with a focus on ease of use." From d39a3820124d7b89ef6377f36631c381d297fa50 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Mon, 6 Feb 2017 19:00:29 -0800 Subject: [PATCH 2/3] Add travis-ci repository to Cargo.toml --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d83c0fd..1b62220 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,9 @@ categories = ["asynchronous", "network-programming"] readme = "README.md" description = "An RPC framework for Rust with a focus on ease of use." +[badges] +travis-ci = { repository = "google/tarpc" } + [dependencies] bincode = "1.0.0-alpha" byteorder = "1.0" From 06beec3e5a43db2a606097339db32e1d842dcdcb Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Mon, 6 Feb 2017 19:23:30 -0800 Subject: [PATCH 3/3] Add keywords that aren't terrible --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1b62220..386d97c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" documentation = "https://docs.rs/tarpc" homepage = "https://github.com/google/tarpc" repository = "https://github.com/google/tarpc" -keywords = ["rpc", "remote", "procedure", "protocol", "tls"] +keywords = ["rpc", "network", "server", "api", "tls"] categories = ["asynchronous", "network-programming"] readme = "README.md" description = "An RPC framework for Rust with a focus on ease of use."