01cba4992c
* Update documentation url in cargo tomls * Bump versions to 0.9.1 * Update guides * Add prepare/publish scripts * Update changelog
34 lines
987 B
TOML
34 lines
987 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.9.1"
|
|
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.9.1"
|
|
|
|
[dependencies]
|
|
base64 = "0.21"
|
|
bytes = "1.0"
|
|
futures-core = "0.3"
|
|
http = "0.2"
|
|
http-body = "0.4"
|
|
hyper = {version = "0.14", default-features = false, features = ["stream"]}
|
|
pin-project = "1"
|
|
tonic = {version = "0.9", path = "../tonic", default-features = false}
|
|
tower-service = "0.3"
|
|
tower-layer = "0.3"
|
|
tower-http = { version = "0.4", features = ["cors"] }
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tokio = {version = "1", features = ["macros", "rt"]}
|
|
tonic = {path = "../tonic", default-features = false, features = ["transport", "tls"]}
|