Skip to content

Commit

Permalink
Fix missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Diggsey committed Jul 2, 2023
1 parent e5f4977 commit 489b5d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aerosol"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
authors = ["Diggory Blake <[email protected]>"]
edition = "2018"
description = "Simple dependency injection for Rust"
Expand Down
6 changes: 4 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

0 comments on commit 489b5d0

Please sign in to comment.