Skip to content

Commit

Permalink
fix re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
oiwn committed Dec 23, 2024
1 parent a62e39a commit a56380c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions capp-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ pub mod http;
pub mod proxy;
#[cfg(feature = "router")]
pub mod router;

#[cfg(feature = "http")]
pub use backoff;
4 changes: 3 additions & 1 deletion capp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ pub mod prelude;

// re-export
pub use async_trait;
pub use capp_config;
#[cfg(feature = "http")]
pub use derive_builder;
pub use capp_config::backoff;
pub use capp_queue;
#[cfg(feature = "mongodb")]
pub use mongodb;
#[cfg(feature = "http")]
Expand Down

0 comments on commit a56380c

Please sign in to comment.