eba7ec7b32
This change introduces proper gRPC interceptors that are avilable regardless of the transport used. Each codegen service now produces an additional method called `with_interceptor` that accepts a `Interceptor`. All examples have been updated to use this new style and interop has a custom `tower::Service` middleware to echo the headers. There is also a new `interceptor` example that shows basic usage. BREAKING CHANGE: removed `interceptor_fn` and `intercep_headers_fn` from `transport` in favor of using `tonic::Interceptor`.
38 lines
756 B
TOML
38 lines
756 B
TOML
[package]
|
|
name = "tonic-interop"
|
|
version = "0.1.0"
|
|
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/bin/client.rs"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/bin/server.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "0.2", features = ["rt-threaded", "time", "macros", "stream", "fs"] }
|
|
tonic = { path = "../tonic", features = ["tls"] }
|
|
prost = "0.6"
|
|
prost-derive = "0.6"
|
|
bytes = "0.5"
|
|
http = "0.2"
|
|
futures-core = "0.3"
|
|
futures-util = "0.3"
|
|
async-stream = "0.2"
|
|
tower = "0.3"
|
|
http-body = "0.3"
|
|
hyper = "0.13"
|
|
console = "0.9"
|
|
structopt = "0.3"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2.0-alpha"
|
|
tracing-log = "0.1.0"
|
|
|
|
[build-dependencies]
|
|
tonic-build = { path = "../tonic-build" }
|