2022-02-15 16:18:36 +00:00
|
|
|
[package]
|
|
|
|
name = "sqlx-hotswap-pool"
|
|
|
|
description = "Workaround for the lack of dyanmic credential update support in sqlx"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-02-15 16:18:36 +00:00
|
|
|
|
|
|
|
# Prevent this from being published to crates.io!
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-22 14:06:13 +00:00
|
|
|
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "json", "tls"] }
|
2023-01-27 10:12:49 +00:00
|
|
|
either = "1.8.1"
|
2022-02-15 16:18:36 +00:00
|
|
|
futures = "0.3"
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-02-15 16:18:36 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-23 02:02:33 +00:00
|
|
|
dotenvy = "0.15.7"
|
2022-02-15 16:18:36 +00:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2023-05-22 13:08:20 +00:00
|
|
|
tokio = { version = "1.28", features = ["rt-multi-thread", "macros", "parking_lot"] }
|