Files
tonic/tonic-reflection/Cargo.toml
T
040e3a4811 chore: Prepare v0.5 release (#706)
* bump tonic version to 0.5

* Update changelog for 0.5

* Update CHANGELOG.md

Co-authored-by: David Pedersen <[email protected]>

* address comments

Co-authored-by: David Pedersen <[email protected]>
2021-07-08 15:53:14 -04:00

33 lines
865 B
TOML

[package]
name = "tonic-reflection"
version = "0.2.0"
authors = [
"James Nugent <[email protected]>",
"Samani G. Gikandi <[email protected]>"
]
edition = "2018"
license = "MIT"
repository = "https://github.com/hyperium/tonic"
homepage = "https://github.com/hyperium/tonic"
description = """
Server Reflection module of `tonic` gRPC implementation.
"""
readme = "README.md"
categories = ["network-programming", "asynchronous"]
keywords = ["rpc", "grpc", "async", "reflection"]
[dependencies]
bytes = "1.0"
prost = "0.8"
prost-types = "0.8"
tokio = { version = "1.0", features = ["sync"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = { version = "0.5", path = "../tonic", features = ["codegen", "prost"] }
[build-dependencies]
tonic-build = { version = "0.5", path = "../tonic-build" }
[dev-dependencies]
futures = "0.3"
futures-util = "0.3"