mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2025-01-07 14:55:33 +00:00
refactor: Replace dotenv with dotenvy
This commit is contained in:
parent
75e12bac6c
commit
9afe483db4
5 changed files with 6 additions and 6 deletions
|
@ -17,7 +17,7 @@ members = ["sqlxmq_macros", "sqlxmq_stress"]
|
|||
[dependencies]
|
||||
sqlx = { version = "0.6.0", 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"] }
|
||||
|
|
|
@ -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?;
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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?;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue