Implementations for Arc and other wrapping types.

This commit is contained in:
Diggory Blake 2023-07-02 14:02:34 +01:00
parent f8ebe14790
commit e5f497756a
No known key found for this signature in database
GPG key ID: E6BDFA83146ABD40
8 changed files with 197 additions and 26 deletions

View file

@ -2,16 +2,16 @@
//! # aerosol
//! Simple dependency injection for Rust
//!
//! Optional features: `async`
//! Optional features:
//!
//! ## `async`
//!
//! Allows resources to be constructed asynchrously, and provies a corresponding
//! Allows resources to be constructed asynchrously, and provides a corresponding
//! `AsyncConstructibleResource` trait.
//!
//! ## `axum`
//!
//! Provies integrations with the `axum` web framework. See the `axum` module
//! Provides integrations with the `axum` web framework. See the `axum` module
//! for more information.
#[cfg(feature = "async")]