feat: some dependencies we will need to interact with a local db, csv's and email

This commit is contained in:
silver 2023-09-10 22:33:35 +01:00
parent c3161315fe
commit 87aa806397
2 changed files with 986 additions and 21 deletions

995
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -12,4 +12,14 @@ tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
# to make the http requests # to make the http requests
surf = "2.3.2" surf = "2.3.2"
dotenvy = "0.15.7" dotenvy = "0.15.7"
# For sqlite
sqlx = { version = "0.7.1", features = [ "runtime-tokio", "sqlite" ] }
# handlign teh csv export from wolves
csv = "1.2"
# for email
lettre = "0.10.4"
maud = "0.25.0"