pub trait BundleProvider: Send + Sync {
// Required method
fn bundle<'life0, 'async_trait>(
&'life0 self,
options: BundleOptions,
) -> Pin<Box<dyn Future<Output = Result<BuildResponse, AnyError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}