-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 956 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (36 loc) · 956 Bytes
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
[package]
name = "b38dev"
version = "0.1.0"
edition = "2024"
[workspace]
members = [
".",
"config",
"migration",
"api",
"service/db",
"service/model",
"service/interface",
"collector/fetcher",
"collector/scheduler",
"collector/parser",
"collector/interface",
]
[dependencies]
config = { path = "config", package = "config" }
db = { path = "service/db", package = "service-db" }
api = { path = "api", features = ["v1"] }
collector = { path = "collector/scheduler", package = "collector-scheduler" }
tokio = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
futures = "0.3.31"
anyhow = "1.0.100"
chrono = "0.4.42"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }