Add dotenv crate to project
All checks were successful
Run Tests on Code / run-tests (push) Successful in 1s

This commit is contained in:
Neshura 2023-12-17 01:51:21 +01:00
parent de435e00cf
commit 955592ac41
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
2 changed files with 661 additions and 405 deletions

1042
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -6,14 +6,16 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.26"
lemmy_api_common = "0.18.2"
lemmy_db_schema = "0.18.2"
once_cell = "1.18.0"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
serde = "1.0.164"
serde_derive = "1.0.164"
serde_json = "1.0.97"
strum_macros = "0.25.0"
tokio = "1.32.0"
url = "2.4.0"
chrono = "^0.4.26"
lemmy_api_common = "^0.18.2"
lemmy_db_schema = "^0.18.2"
once_cell = "^1.18.0"
reqwest = { version = "^0.11.18", features = ["blocking", "json"] }
serde = "^1.0.164"
serde_derive = "^1.0.164"
serde_json = "^1.0.97"
strum_macros = "^0.25.0"
tokio = { version = "^1.32.0", features = ["rt", "rt-multi-thread", "macros"] }
url = "^2.4.0"
confy = "0.5.1"
dotenv = "0.15.0"