chore: Prepare v0.9.0 release (#1337)

This commit is contained in:
Lucio Franco
2023-03-31 18:41:53 +00:00
committed by GitHub
parent b54ce2321a
commit 3a497f2ca2
13 changed files with 73 additions and 26 deletions
+5 -5
View File
@@ -9,23 +9,23 @@ Server Reflection module of `tonic` gRPC implementation.
"""
edition = "2021"
homepage = "https://github.com/hyperium/tonic"
documentation = "https://docs.rs/tonic-reflection/0.5.0/tonic-reflection/"
documentation = "https://docs.rs/tonic-reflection/0.9.0/tonic-reflection/"
keywords = ["rpc", "grpc", "async", "reflection"]
license = "MIT"
name = "tonic-reflection"
readme = "README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.6.0"
version = "0.9.0"
[dependencies]
prost = "0.11"
prost-types = "0.11"
tokio = {version = "1.0", features = ["sync", "rt"]}
tokio-stream = {version = "0.1", features = ["net"]}
tonic = { version = "0.8", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
tonic = { version = "0.9", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
[dev-dependencies]
tonic = { version = "0.8", path = "../tonic", default-features = false, features = ["transport"] }
tonic-build = { version = "0.8", path = "../tonic-build", default-features = false, features = ["prost", "cleanup-markdown"] }
tonic = { version = "0.9", path = "../tonic", default-features = false, features = ["transport"] }
tonic-build = { version = "0.9", path = "../tonic-build", default-features = false, features = ["prost", "cleanup-markdown"] }
futures = "0.3"
futures-util = "0.3"