aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-cli
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-11-11 15:57:38 -0800
committerBryan Newbold <bnewbold@robocracy.org>2022-11-11 15:57:38 -0800
commit8a01449d158a3a423c965bc48df0f8512536dbaa (patch)
treeeaaf0991ef29f3862d2480e8c205f85e8bf4af3d /adenosine-cli
parentcd371419360a6b61985a311141525257e2b8a6f8 (diff)
downloadadenosine-8a01449d158a3a423c965bc48df0f8512536dbaa.tar.gz
adenosine-8a01449d158a3a423c965bc48df0f8512536dbaa.zip
update from dotenv to dotenvy
Diffstat (limited to 'adenosine-cli')
-rw-r--r--adenosine-cli/Cargo.toml2
-rw-r--r--adenosine-cli/src/bin/adenosine.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/adenosine-cli/Cargo.toml b/adenosine-cli/Cargo.toml
index 4431665..0be5641 100644
--- a/adenosine-cli/Cargo.toml
+++ b/adenosine-cli/Cargo.toml
@@ -23,7 +23,7 @@ serde_json = "1"
base64 = "0.13"
regex = "1"
lazy_static = "1"
-dotenv = "0.15"
+dotenvy = "0.15"
data-encoding = "2"
rand = "0.8"
time = { version = "0.3", features = ["formatting"] }
diff --git a/adenosine-cli/src/bin/adenosine.rs b/adenosine-cli/src/bin/adenosine.rs
index 6873a8b..6fbb60e 100644
--- a/adenosine-cli/src/bin/adenosine.rs
+++ b/adenosine-cli/src/bin/adenosine.rs
@@ -218,7 +218,7 @@ enum Command {
}
fn main() -> Result<()> {
- dotenv::dotenv().ok();
+ dotenvy::dotenv().ok();
let opt = Opt::from_args();
let log_level = match opt.verbose {