Files
tonic/tonic-health/Cargo.toml
T
David PedersenandGitHub acdb3273bb chore: update prost, and related crates, to 0.8 (#703)
* chore: update prost, and related crates, to 0.8

Updates prost, prost-derive, prost-build, and prost-types to 0.8.

* Update the last few places
2021-07-08 15:02:02 -04:00

34 lines
946 B
TOML

[package]
name = "tonic-health"
version = "0.3.1"
authors = ["James Nugent <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/hyperium/tonic"
homepage = "https://github.com/hyperium/tonic"
documentation = "https://docs.rs/tonic-health/0.3.1/tonic-health/"
description = """
Health Checking module of `tonic` gRPC implementation.
"""
readme = "README.md"
categories = ["network-programming", "asynchronous"]
keywords = ["rpc", "grpc", "async", "healthcheck"]
[features]
default = ["transport"]
transport = ["tonic/transport"]
[dependencies]
tokio = { version = "1.0", features = ["sync"] }
tonic = { version = "0.4", path = "../tonic", features = ["codegen", "prost"] }
bytes = "1.0"
prost = "0.8"
tokio-stream = "0.1"
async-stream = "0.3"
[dev-dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"]}
[build-dependencies]
tonic-build = { version = "0.4", path = "../tonic-build" }