2018-09-18 11:39:15 +01:00
|
|
|
[package]
|
|
|
|
|
name = "aerosol"
|
2023-08-14 10:58:22 +01:00
|
|
|
version = "1.0.0-alpha.7"
|
2018-09-18 11:39:15 +01:00
|
|
|
authors = ["Diggory Blake <diggsey@googlemail.com>"]
|
|
|
|
|
edition = "2018"
|
2023-07-02 00:07:15 +01:00
|
|
|
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
|
|
|
|
2023-07-02 14:02:34 +01:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
|
2023-07-02 00:07:15 +01:00
|
|
|
[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"]
|
2023-07-02 00:07:15 +01:00
|
|
|
|
2018-09-18 11:39:15 +01:00
|
|
|
[dependencies]
|
2023-07-02 00:07:15 +01:00
|
|
|
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 }
|
2023-08-14 12:31:02 +01:00
|
|
|
axum-extra = { version = "0.7.7", optional = true, features = [
|
|
|
|
|
"cookie-private",
|
|
|
|
|
] }
|
2023-07-02 00:07:15 +01:00
|
|
|
tracing = { version = "0.1", optional = true }
|
|
|
|
|
thiserror = { version = "1.0", optional = true }
|
2023-07-02 15:33:45 +01:00
|
|
|
anyhow = { version = "1.0" }
|
2023-08-03 19:56:48 +01:00
|
|
|
frunk = "0.4.2"
|
2023-07-02 00:07:15 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tokio = { version = "1.0", features = ["macros"] }
|