diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-03 18:18:46 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-03 18:18:46 -0700 |
commit | 00b17ca17ea0d9503aab3175732977a2119962b9 (patch) | |
tree | c678a15757e19431683fd1d3c79e654f8986a209 /Cargo.lock | |
parent | 498f9e0b0b87e6d497b235474c0db669076d73ff (diff) | |
download | adenosine-00b17ca17ea0d9503aab3175732977a2119962b9.tar.gz adenosine-00b17ca17ea0d9503aab3175732977a2119962b9.zip |
use dotenv to pick up environment variables
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -20,6 +20,7 @@ dependencies = [ "atty", "base64", "colored_json", + "dotenv", "env_logger 0.9.1", "lazy_static", "log", @@ -39,6 +40,7 @@ dependencies = [ "bcrypt", "bs58", "data-encoding", + "dotenv", "futures", "ipfs-sqlite-block-store", "iroh-car", @@ -1238,6 +1240,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" [[package]] +name = "dotenv" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" + +[[package]] name = "dtoa" version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" |