mirror of
https://github.com/TECHNOFAB11/aerosol.git
synced 2025-12-11 23:50:07 +01:00
Fix missing exports
This commit is contained in:
parent
e5f497756a
commit
489b5d04d8
2 changed files with 5 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aerosol"
|
name = "aerosol"
|
||||||
version = "1.0.0-alpha.2"
|
version = "1.0.0-alpha.3"
|
||||||
authors = ["Diggory Blake <diggsey@googlemail.com>"]
|
authors = ["Diggory Blake <diggsey@googlemail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Simple dependency injection for Rust"
|
description = "Simple dependency injection for Rust"
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,9 @@ mod sync_constructible;
|
||||||
pub use resource::Resource;
|
pub use resource::Resource;
|
||||||
pub use state::Aerosol;
|
pub use state::Aerosol;
|
||||||
|
|
||||||
pub use sync_constructible::ConstructibleResource;
|
pub use sync_constructible::{Constructible, ConstructibleResource, IndirectlyConstructible};
|
||||||
|
|
||||||
#[cfg(feature = "async")]
|
#[cfg(feature = "async")]
|
||||||
pub use async_constructible::AsyncConstructibleResource;
|
pub use async_constructible::{
|
||||||
|
AsyncConstructible, AsyncConstructibleResource, IndirectlyAsyncConstructible,
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue