/*!
Huskarl provides tools for implementing secure `OAuth2` in rust.
huskarl-core provides the base traits and implementations for the huskarl ecosystem.
*/
// The dyn-capable strategy traits are shared between native and wasm32 behind
// `Arc<dyn Trait>`. On wasm32 (single-threaded) the implementations are
// intentionally not `Send`/`Sync` (see `platform::MaybeSend`), which trips this
// lint even though the `Arc` never crosses a thread boundary there.
pub use EndpointUrl;
pub use ;