This commit is contained in:
Emelie Graven 2023-10-15 22:14:05 +02:00 committed by GitHub
commit a5c3094a69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -17,7 +17,7 @@ members = ["sqlxmq_macros", "sqlxmq_stress"]
[dependencies]
sqlx = { version = "0.7.1", features = ["postgres", "chrono", "uuid"] }
tokio = { version = "1.8.3", features = ["full"] }
dotenv = "0.15.0"
dotenvy = "0.15.3"
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.3"
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

@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
sqlxmq = { path = ".." }
tokio = { version = "1.4.0", features = ["full"] }
dotenv = "0.15.0"
dotenvy = "0.15.3"
sqlx = "0.6.0"
serde = "1.0.125"
lazy_static = "1.4.0"

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);