Files
tonic/tonic-health/Cargo.toml
T
2020-04-01 14:34:51 -04:00

31 lines
859 B
TOML

[package]
name = "tonic-health"
version = "0.1.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]
async-stream = "0.2"
tokio = { version = "0.2", features = ["sync", "stream"] }
tonic = { version = "0.2", path = "../tonic", features = ["codegen", "prost"] }
bytes = "0.5"
prost = "0.6"
[dev-dependencies]
tokio = { version = "0.2", features = ["rt-core", "macros"]}
[build-dependencies]
tonic-build = { version = "0.2", path = "../tonic-build" }