Files
tonic/tonic-health/Cargo.toml
T
fdda5ae26a Upgrade to Tokio 1.0.0 ecosystem (#530)
* Upgrade Tonic to Tokio 1.0

Work in progress for updating Tonic to Tokio 1.0. Since tower has not
been released to crates.io, a git dependency is taken instead.

* Upgrade Tonic to Tokio 1.0 phase 2

* tonic: remove tower-* deps

* Apply suggestions from code review

Co-authored-by: Ed Marshall <[email protected]>
Co-authored-by: Lucio Franco <[email protected]>
2021-01-11 12:18:34 -05:00

32 lines
844 B
TOML

[package]
name = "tonic-health"
version = "0.2.0"
authors = ["James Nugent <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/hyperium/tonic"
homepage = "https://github.com/hyperium/tonic"
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 = { path = "../tonic", features = ["codegen", "prost"] }
bytes = "1.0"
prost = "0.7"
tokio-stream = "0.1"
async-stream = "0.3"
[dev-dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"]}
[build-dependencies]
tonic-build = { path = "../tonic-build" }