Fix missing exports

This commit is contained in:
Diggory Blake 2023-07-02 14:30:50 +01:00
parent e5f497756a
commit 489b5d04d8
No known key found for this signature in database
GPG key ID: E6BDFA83146ABD40
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "aerosol"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
description = "Simple dependency injection for Rust"

View file

@ -29,7 +29,9 @@ mod sync_constructible;
pub use resource::Resource;
pub use state::Aerosol;
pub use sync_constructible::ConstructibleResource;
pub use sync_constructible::{Constructible, ConstructibleResource, IndirectlyConstructible};
#[cfg(feature = "async")]
pub use async_constructible::AsyncConstructibleResource;
pub use async_constructible::{
AsyncConstructible, AsyncConstructibleResource, IndirectlyAsyncConstructible,
};