influxdb/sqlx-hotswap-pool/Cargo.toml

22 lines
656 B
TOML

[package]
name = "sqlx-hotswap-pool"
description = "Workaround for the lack of dyanmic credential update support in sqlx"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
# Prevent this from being published to crates.io!
publish = false
[dependencies]
sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "json", "tls"] }
either = "1.7.0"
tokio = { version = "1.21", features = ["rt-multi-thread", "macros", "parking_lot"] }
futures = "0.3"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
dotenvy = "0.15.6"
rand = { version = "0.8", features = ["small_rng"] }