chore: Prepare 0.8 release (#1044)

This commit is contained in:
Lucio Franco
2022-07-29 16:45:57 -04:00
parent 2a7c610011
commit ec359ba35f
29 changed files with 84 additions and 55 deletions
+4 -4
View File
@@ -13,14 +13,14 @@ categories = ["web-programming", "network-programming", "asynchronous"]
description = """
A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
"""
documentation = "https://docs.rs/tonic/0.7.2/tonic/"
documentation = "https://docs.rs/tonic/0.8.0/tonic/"
edition = "2018"
homepage = "https://github.com/hyperium/tonic"
keywords = ["rpc", "grpc", "async", "futures", "protobuf"]
license = "MIT"
readme = "../README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.7.2"
version = "0.8.0"
[features]
codegen = ["async-trait"]
@@ -67,8 +67,8 @@ tower-layer = "0.3"
tower-service = "0.3"
# prost
prost-derive = {version = "0.10", optional = true}
prost1 = {package = "prost", version = "0.10", optional = true}
prost-derive = {version = "0.11", optional = true}
prost1 = {package = "prost", version = "0.11", optional = true}
# codegen
async-trait = {version = "0.1.13", optional = true}
+1 -1
View File
@@ -81,7 +81,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
)]
#![doc(html_root_url = "https://docs.rs/tonic/0.7.2")]
#![doc(html_root_url = "https://docs.rs/tonic/0.8.0")]
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
#![cfg_attr(docsrs, feature(doc_cfg))]