-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (63 loc) · 3.37 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (63 loc) · 3.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
resolver = "2"
members = [
"crates/dp-domain",
"crates/dp-store-pg",
"crates/dp-fetcher",
"crates/dp-reports",
"crates/dp-rest",
"crates/dp-mcp",
"crates/dp-cli",
"crates/dp-server",
"crates/dev-pulse",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NubeDev/dev-pulse"
rust-version = "1.78"
[workspace.dependencies]
# Internal dev-pulse crates.
dp-domain = { path = "crates/dp-domain", version = "0.1.0" }
dp-store-pg = { path = "crates/dp-store-pg", version = "0.1.0" }
dp-fetcher = { path = "crates/dp-fetcher", version = "0.1.0" }
dp-reports = { path = "crates/dp-reports", version = "0.1.0" }
dp-rest = { path = "crates/dp-rest", version = "0.1.0" }
dp-mcp = { path = "crates/dp-mcp", version = "0.1.0" }
dp-cli = { path = "crates/dp-cli", version = "0.1.0" }
dp-server = { path = "crates/dp-server", version = "0.1.0" }
# starter-* — consumed as a library (TODO §1). Pinned via path per
# SCOPE §"In scope". Never edited from this repo.
starter-spi = { path = "../starter/crates/starter-spi", version = "0.1.0" }
starter-blob-memory = { path = "../starter/crates/starter-blob-memory", version = "0.1.0" }
starter-config = { path = "../starter/crates/starter-config", version = "0.1.0" }
starter-observability = { path = "../starter/crates/starter-observability", version = "0.1.0" }
starter-server = { path = "../starter/crates/starter-server", version = "0.1.0" }
starter-store-postgres = { path = "../starter/crates/starter-store-postgres", version = "0.1.0" }
starter-store-sqlite = { path = "../starter/crates/starter-store-sqlite", version = "0.1.0" }
starter-mcp = { path = "../starter/crates/starter-mcp", version = "0.1.0" }
starter-auth-users = { path = "../starter/crates/starter-auth-users", version = "0.1.0" }
starter-auth-oauth = { path = "../starter/crates/starter-auth-oauth", version = "0.1.0" }
starter-authz = { path = "../starter/crates/starter-authz", version = "0.1.0" }
starter-secrets-file = { path = "../starter/crates/starter-secrets-file", version = "0.1.0" }
starter-client-rs = { path = "../starter/crates/starter-client-rs", version = "0.1.0" }
starter-cli = { path = "../starter/crates/starter-cli", version = "0.1.0" }
# Common third-party deps used across dev-pulse crates.
anyhow = "1"
async-trait = "0.1"
chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] }
chrono-tz = { version = "0.10", default-features = false, features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "signal"] }
tracing = "0.1"
uuid = { version = "1", features = ["v4", "serde"] }
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "macros", "postgres"] }
axum = { version = "0.8", features = ["macros", "multipart"] }
bytes = "1"
futures = "0.3"
utoipa = { version = "5", features = ["axum_extras", "uuid", "chrono"] }
prometheus = "0.14"