diff options
Diffstat (limited to 'adenosine-pds')
-rw-r--r-- | adenosine-pds/Cargo.toml | 2 | ||||
-rw-r--r-- | adenosine-pds/src/bin/adenosine-pds.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/adenosine-pds/Cargo.toml b/adenosine-pds/Cargo.toml index 1a92e96..24c3dbc 100644 --- a/adenosine-pds/Cargo.toml +++ b/adenosine-pds/Cargo.toml @@ -43,7 +43,7 @@ ucan = "0.7.0-alpha.1" # TODO: replace this with data-encoding or similar; this is only needed for ucan_p256 stuff bs58 = "0.4" async-trait = "0.1" -dotenv = "0.15" +dotenvy = "0.15" askama = { version = "0.11", features = ["serde-json"] } time = { version = "0.3", features = ["formatting"] } diff --git a/adenosine-pds/src/bin/adenosine-pds.rs b/adenosine-pds/src/bin/adenosine-pds.rs index d02b07c..3379841 100644 --- a/adenosine-pds/src/bin/adenosine-pds.rs +++ b/adenosine-pds/src/bin/adenosine-pds.rs @@ -128,7 +128,7 @@ enum Command { } fn main() -> Result<()> { - dotenv::dotenv().ok(); + dotenvy::dotenv().ok(); let opt = Opt::from_args(); if let Some(shell) = opt.shell_completions { |