-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 875 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "app-frame"
version = "0.3.1"
edition = "2021"
description = "Compile-time dependency-injected application framework with a service orchestrator."
license = "MIT OR Apache-2.0"
repository = "https://github.com/dnut/app-frame"
readme = "README.md"
keywords = ["dependency", "injection", "inject", "framework", "service"]
categories = [
"config",
"rust-patterns",
"development-tools",
"web-programming",
"concurrency",
]
[lib]
crate-type = ["lib"]
name = "app_frame"
path = "src/lib.rs"
[dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
async-trait = "0.1.64"
futures = "0.3"
hyper = { version = "0.14.26", features = ["full"] }
ordered-float = "3.6.0"
parking_lot = { version = "0.12", features = ["send_guard"] }
priority-queue = "1.3.1"
regex = "1.8.3"
tokio = "1"
tracing = { version = "0.1", features = ["log"] }