mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
36 lines
800 B
TOML
36 lines
800 B
TOML
[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"] }
|
|
|
|
sqlx = { path = "../../..", version = "0.8.3", features = ["runtime-tokio", "postgres"] }
|
|
|
|
axum = { version = "0.8.1", features = ["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.accounts]
|
|
package = "sqlx-example-postgres-multi-tenant-accounts"
|
|
path = "accounts"
|
|
|
|
[dependencies.payments]
|
|
package = "sqlx-example-postgres-multi-tenant-accounts"
|
|
path = "payments"
|
|
|
|
[lints]
|
|
workspace = true
|