Skip to content

Commit

Permalink
Merge pull request #53 from oiwn/dev
Browse files Browse the repository at this point in the history
fix re-exports
  • Loading branch information
oiwn authored Dec 24, 2024
2 parents 1e3f180 + a56380c commit cba772a
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 cba772a

Please sign in to comment.