From d5130516ac59f563560f96b52e561876bad413eb Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Fri, 4 Oct 2024 16:33:52 -0400 Subject: [PATCH] Add dotenvy crate --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 7d99f4d..31ca72d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -745,6 +745,12 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" +[[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + [[package]] name = "drain_filter_polyfill" version = "0.1.3" @@ -1491,6 +1497,7 @@ dependencies = [ name = "ingest" version = "0.1.0" dependencies = [ + "dotenvy", "libretunes", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index e2a1fa5..ee47d2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,5 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] +dotenvy = "0.15.7" libretunes = { git = "https://git.libretunes.xyz/LibreTunes/LibreTunes.git", default-features = false, features = ["ssr"] } tokio = { version = "1", features = ["full"] }