31 lines
859 B
TOML
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" } |