aerosol/Cargo.toml

29 lines
827 B
TOML
Raw Normal View History

2018-09-18 11:39:15 +01:00
[package]
name = "aerosol"
2023-07-02 14:30:50 +01:00
version = "1.0.0-alpha.3"
2018-09-18 11:39:15 +01:00
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
description = "Simple dependency injection for Rust"
2018-09-18 11:43:20 +01:00
repository = "https://github.com/Diggsey/aerosol"
license = "MIT OR Apache-2.0"
2018-09-18 11:39:15 +01:00
[package.metadata.docs.rs]
all-features = true
[features]
default = []
async = ["async-trait"]
axum = ["dep:axum", "async", "tracing", "thiserror", "anyhow"]
2018-09-18 11:39:15 +01:00
[dependencies]
parking_lot = "0.12.1"
anymap = { version = "1.0.0-beta.2", features = ["hashbrown"] }
async-trait = { version = "0.1", optional = true }
axum = { version = "0.6", optional = true }
tracing = { version = "0.1", optional = true }
thiserror = { version = "1.0", optional = true }
anyhow = { version = "1.0", optional = true }
[dev-dependencies]
tokio = { version = "1.0", features = ["macros"] }