Skip to content

Commit

Permalink
Replace dotenv with dotenvy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Sep 21, 2023
1 parent 6385cb1 commit 0e2f9ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
8 changes: 1 addition & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/micro-oz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async-trait = "0.1.71"
axum = "0.6.19"
chrono = "0.4.26"
clap = { version = "4.3.14", features = ["env", "derive"] }
dotenv = "0.15.0"
dotenvy = "0.15.0"
ethers = { version = "1.0.0", features = ["openssl"] }
hex = "0.4.3"
hyper = "0.14.27"
Expand Down
2 changes: 1 addition & 1 deletion crates/micro-oz/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct Args {

#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv::dotenv().ok();
dotenvy::dotenv().ok();
tracing_subscriber::fmt::init();

let args = Args::parse();
Expand Down

0 comments on commit 0e2f9ec

Please sign in to comment.