-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.07 KB
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
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = [
"crates/types",
"crates/service",
"crates/api",
"crates/storage",
"crates/adapters",
"crates/config",
]
resolver = "2"
[package]
name = "oif-aggregator"
version = "0.1.0"
edition = "2021"
rust-version = "1.86.0"
[dependencies]
oif-types = { path = "crates/types" }
oif-config = { path = "crates/config" }
oif-service = { path = "crates/service" }
oif-storage = { path = "crates/storage" }
oif-adapters = { path = "crates/adapters" }
oif-api = { path = "crates/api" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tokio = { version = "1.0", features = ["full"] }
axum = "0.8"
dotenvy = "0.15"
async-trait = "0.1"
reqwest = { version = "0.12", features = ["json"] }
tower = { version = "0.5", features = ["limit", "timeout", "util"] }
clap = { version = "4.5", features = ["derive"] }
[dev-dependencies]
tower = "0.5"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
mockall = "0.13"
[features]
default = []
openapi = ["oif-api/openapi", "oif-types/openapi"]