Add dotenvy crate

This commit is contained in:
Ethan Girouard 2024-10-04 16:33:52 -04:00
parent 0518a42294
commit d5130516ac
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
2 changed files with 8 additions and 0 deletions

7
Cargo.lock generated
View File

@ -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",
]

View File

@ -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"] }