forked from launchbadge/sqlx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (28 loc) · 779 Bytes
/
Cargo.toml
File metadata and controls
36 lines (28 loc) · 779 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
[package]
name = "sqlx-example-postgres-multi-tenant"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
authors.workspace = true
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
color-eyre = "0.6.3"
dotenvy = "0.15.7"
tracing-subscriber = "0.3.19"
rust_decimal = "1.36.0"
rand = "0.8.5"
[dependencies.sqlx]
# version = "0.9.0"
workspace = true
features = ["runtime-tokio", "postgres", "migrate", "sqlx-toml"]
[dependencies.accounts]
path = "accounts"
package = "sqlx-example-postgres-multi-tenant-accounts"
[dependencies.payments]
path = "payments"
package = "sqlx-example-postgres-multi-tenant-payments"
[lints]
workspace = true