···11+/// hydrant configuration
12pub mod config;
23/// hydrant main api, includes the Hydrant type for programmatic control.
34pub mod control;
45pub(crate) mod filter;
56pub(crate) mod pds_meta;
67pub mod types;
88+99+/// dependencies hydrant uses in it's public api
1010+pub mod deps {
1111+ pub use futures;
1212+ pub use jacquard_common as jacquard;
1313+ pub use rustls;
1414+ pub use smol_str;
1515+}
716817#[cfg(all(feature = "relay", feature = "indexer"))]
918compile_error!("can't be relay and indexer at the same time");