chore(interop): Fix tls tests
chore(interop): Remove unnecessary asyncronous file io to read data (#1336)
chore(interop): Use pico-args instead of clap (#1242)
chore(interop): Update clap to 4.0.26 (#1162)
chore: update clap dependency, fix deprecations (#1016)
chore(interop): Use clap rename_all option instead of lint allowing (#957)
chore(interop): Fix deprecated clap arg (#914)
chore(interop): Change structopt to clap (#882)
fix(transport): Propagate errors in tls_config instead of unwrap/panic (#385)* Propagate errors in tls_config instead of unwrap Ran into `tls_connector` failing and causing our app to panic and
fix(transport): Propagate errors in tls_config instead of unwrap/panic (#385)* Propagate errors in tls_config instead of unwrap Ran into `tls_connector` failing and causing our app to panic and shutdown as it seems there wasn't any way to avoid panicking in `tls_config`. So after talking to @LucioFranco briefly `tls_config` now returns a `Result` instead and propagates errors to the caller, where they can be handled. * Fix compile warning when tls feature is disabled
show more ...
chore: Fix feature flags and build docs (#311)Signed-off-by: Lucio Franco <[email protected]>
feat: Add gRPC interceptors (#232)This change introduces proper gRPC interceptors that are avilable regardless of the transport used. Each codegen service now produces an additional method called
feat: Add gRPC interceptors (#232)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`.
chore: Remove required bytes dep and clean up deny (#227)* chore: Remove required bytes dep and clean up deny * Fix interop test cli args
fix(transport): Remove with_rustls for tls config (#188)
chore: Reorganize examples and interop crates (#180)* chore: Reorganize examples and interop crates * fix interop tests