Skip to content

Commit

Permalink
feat(transport): Add channel feature flag (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Apr 4, 2022
1 parent 738ccba commit f1ca90f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions tonic/Cargo.toml
Expand Up @@ -33,6 +33,9 @@ tls-roots-common = ["tls"]
tls-webpki-roots = ["tls-roots-common", "webpki-roots"]
transport = [
"axum",
"channel"
]
channel = [
"h2",
"hyper",
"tokio",
Expand Down
4 changes: 3 additions & 1 deletion tonic/src/lib.rs
Expand Up @@ -17,7 +17,9 @@
//! # Feature Flags
//!
//! - `transport`: Enables the fully featured, batteries included client and server
//! implementation based on [`hyper`], [`tower`] and [`tokio`]. Enabled by default.
//! implementation based on [`hyper`], [`tower`] and [`tokio`]. Enabled by default.
//! - `channel`: Enables just the full featured channel/client portion of the `transport`
//! feature.
//! - `codegen`: Enables all the required exports and optional dependencies required
//! for [`tonic-build`]. Enabled by default.
//! - `tls`: Enables the `rustls` based TLS options for the `transport` feature. Not
Expand Down
2 changes: 2 additions & 0 deletions tonic/src/transport/mod.rs
Expand Up @@ -94,6 +94,8 @@ mod service;
mod tls;

#[doc(inline)]
#[cfg(feature = "channel")]
#[cfg_attr(docsrs, doc(cfg(feature = "channel")))]
pub use self::channel::{Channel, Endpoint};
pub use self::error::Error;
#[doc(inline)]
Expand Down

0 comments on commit f1ca90f

Please sign in to comment.