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
+6 -6
View File
@@ -9,24 +9,24 @@ Server Reflection module of `tonic` gRPC implementation.
"""
edition = "2018"
homepage = "https://github.com/hyperium/tonic"
documentation = "https://docs.rs/tonic-reflection/0.4.0/tonic-reflection/"
documentation = "https://docs.rs/tonic-reflection/0.5.0/tonic-reflection/"
keywords = ["rpc", "grpc", "async", "reflection"]
license = "MIT"
name = "tonic-reflection"
readme = "README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.4.0"
version = "0.5.0"
[dependencies]
bytes = "1.0"
prost = "0.10"
prost-types = "0.10"
prost = "0.11"
prost-types = "0.11"
tokio = {version = "1.0", features = ["sync"]}
tokio-stream = {version = "0.1", features = ["net"]}
tonic = {version = "0.7", path = "../tonic", features = ["codegen", "prost"]}
tonic = {version = "0.8", path = "../tonic", features = ["codegen", "prost"]}
[build-dependencies]
tonic-build = {version = "0.7", path = "../tonic-build", features = ["transport", "prost"]}
tonic-build = {version = "0.8", path = "../tonic-build", features = ["transport", "prost"]}
[dev-dependencies]
futures = "0.3"