Prepare for release

This commit is contained in:
Tim
2018-10-16 21:59:59 -07:00
parent 905e5be8bb
commit 29067b7773
33 changed files with 249 additions and 96 deletions

View File

@@ -1,15 +1,15 @@
[package]
name = "tarpc-plugins"
version = "0.4.0"
version = "0.5.0"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
license = "MIT"
documentation = "https://docs.rs/tarpc"
documentation = "https://docs.rs/tarpc-plugins"
homepage = "https://github.com/google/tarpc"
repository = "https://github.com/google/tarpc"
keywords = ["rpc", "network", "server", "api", "tls"]
keywords = ["rpc", "network", "server", "api", "microservices"]
categories = ["asynchronous", "network-programming"]
readme = "../../README.md"
description = "Plugins for tarpc, an RPC framework for Rust with a focus on ease of use."
readme = "../README.md"
description = "Proc macros for tarpc."
[badges]
travis-ci = { repository = "google/tarpc" }

View File

@@ -1,3 +1,9 @@
// Copyright 2018 Google LLC
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
extern crate proc_macro;
extern crate proc_macro2;
extern crate syn;