fix(reflection, health): Remove transport feature (#1112)

This commit is contained in:
Aleksander
2022-11-07 12:00:17 -05:00
committed by GitHub
parent f82488c499
commit 7153289b51
7 changed files with 17 additions and 22 deletions
+5 -1
View File
@@ -7,4 +7,8 @@ Please follow the example in the [main repo](https://github.com/hyperium/tonic/t
## Features
- transport: Provides the ability to set the service by using the type system and the
`NamedService` trait.
`NamedService` trait. You can use it like that:
```rust
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
let client = HealthClient::new(conn);
```