-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 830 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
[workspace]
resolver = "2"
members = ["app", "metro-scrape", "backend", "foodlib", "cli-client", "api" , "status-api"]
default-members = ["app", "backend", "foodlib"]
[workspace.dependencies]
sqlx = { version = "0.7", features = [
"postgres",
"macros",
"migrate",
"uuid",
"runtime-tokio-rustls",
"bigdecimal",
"chrono",
] }
num = "0.4"
bigdecimal = { version = "0.3", features = ["serde"] }
dotenv = "0.15.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
log = "0.4"
eyre = "0.6"
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
axum-login = { git = "https://github.com/maxcountryman/axum-login", rev = "5239b38b2698a3db3f92075b6ad430aea79c215a", features = [
"sqlx",
"postgres",
] }
[profile.dev.package.sqlx-macros]
opt-level = 3