chore: update dotenv -> dotenvy, sqlx -> 0.8.1

This commit is contained in:
Judson Lester 2024-09-16 12:15:36 -07:00
parent 8bc74e282a
commit 9e09e1fb31
No known key found for this signature in database
GPG key ID: 12E21E4B9A3F82AA
4 changed files with 6 additions and 6 deletions

View file

@ -15,9 +15,9 @@ members = ["sqlxmq_macros", "sqlxmq_stress"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.7.1", features = ["postgres", "chrono", "uuid"] }
sqlx = { version = "0.8.1", features = ["postgres", "chrono", "uuid"] }
tokio = { version = "1.8.3", features = ["full"] }
dotenv = "0.15.0"
dotenvy = "0.15.7"
chrono = "0.4.19"
uuid = { version = "1.1.2", features = ["v4"] }
log = "0.4.14"
@ -32,7 +32,7 @@ runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls"]
runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls"]
[dev-dependencies]
dotenv = "0.15.0"
dotenvy = "0.15.0"
pretty_env_logger = "0.4.0"
futures = "0.3.13"
tokio = { version = "1", features = ["full"] }

View file

@ -4,7 +4,7 @@ use tokio::time;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
dotenv::dotenv().ok();
dotenvy::dotenv().ok();
let db = sqlx::PgPool::connect(&std::env::var("DATABASE_URL").unwrap()).await?;
sleep.builder().set_json(&5u64)?.spawn(&db).await?;

View file

@ -80,7 +80,7 @@ async fn schedule_tasks(num_jobs: usize, interval: Duration, pool: Pool<Postgres
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let _ = dotenv::dotenv();
let _ = dotenvy::dotenv();
let pool = Pool::connect(&env::var("DATABASE_URL")?).await?;

View file

@ -294,7 +294,7 @@ mod tests {
let guard = TEST_MUTEX.lock().await;
let _ = dotenv::dotenv();
let _ = dotenvy::dotenv();
INIT_LOGGER.call_once(pretty_env_logger::init);