-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 964 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 964 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
[workspace]
members = [
"app",
"worker",
"packages/db-core"
]
resolver = "2"
[workspace.dependencies]
axum = "0.8.4"
axum-inertia = "0.8.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tokio = { version = "1.45.0", features = ["full"] }
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
dotenv = "0.15.0"
sqlx = { version = "0.8.3", features = ["runtime-tokio-rustls", "postgres", "macros", "uuid", "json", "migrate", "time"] }
time = { version = "0.3.34", features = ["serde"] }
uuid = { version = "1.7.0", features = ["v4", "serde"] }
thiserror = "1.0.58"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
graphile_worker = "0.8.4"
graphile_worker_migrations = "0.4.6"
graphile_worker_task_handler = "0.5.4"
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.12", features = ["json"] }
[workspace.dev-dependencies]
cargo-watch = "8.5.2"