aerosol/Cargo.toml

34 lines
948 B
TOML
Raw Normal View History

2018-09-18 11:39:15 +01:00
[package]
name = "aerosol"
2024-04-22 16:49:50 +01:00
version = "1.0.0-alpha.9"
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"]
2023-07-02 15:33:45 +01:00
axum = ["dep:axum", "async", "tracing", "thiserror"]
2023-08-14 12:31:02 +01:00
axum-extra = ["axum", "dep:axum-extra"]
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 }
2024-04-22 16:49:50 +01:00
axum = { version = "0.7.5", optional = true }
axum-extra = { version = "0.9.3", optional = true, features = [
2023-08-14 12:31:02 +01:00
"cookie-private",
] }
tracing = { version = "0.1", optional = true }
thiserror = { version = "1.0", optional = true }
2023-07-02 15:33:45 +01:00
anyhow = { version = "1.0" }
frunk = "0.4.2"
[dev-dependencies]
tokio = { version = "1.0", features = ["macros"] }