Files
tonic/tonic-web/Cargo.toml
T
2022-12-13 15:16:49 -05:00

34 lines
963 B
TOML

[package]
authors = ["Juan Alvarez <alce@me.com>"]
categories = ["network-programming", "asynchronous"]
description = """
grpc-web protocol translation for tonic services.
"""
documentation = "https://docs.rs/tonic-web/0.4.0/tonic-web/"
edition = "2021"
homepage = "https://github.com/hyperium/tonic"
keywords = ["rpc", "grpc", "grpc-web"]
license = "MIT"
name = "tonic-web"
readme = "README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.5.0"
[dependencies]
base64 = "0.13"
bytes = "1.0"
futures-core = "0.3"
http = "0.2"
http-body = "0.4"
hyper = "0.14"
pin-project = "1"
tonic = {version = "0.8", path = "../tonic", default-features = false, features = ["transport"]}
tower-service = "0.3"
tower-layer = "0.3"
tower-http = { version = "0.3", features = ["cors"] }
tracing = "0.1"
[dev-dependencies]
tokio = {version = "1", features = ["macros", "rt"]}
tonic = {path = "../tonic", default-features = false, features = ["transport", "tls"]}