Replace unmaintained directories crate

Fixes RUSTSEC-2020-0054 warning from cargo-audit/cargo-deny, follows the recommendation to switch to the new maintained `directories-next` crate fork

Only affects the cache directory determination for the environment and was a simple search'n'replace to this fork so don't think behavior has changed.

https://rustsec.org/advisories/RUSTSEC-2020-0054
This commit is contained in:
Johan Andersson
2020-10-17 13:08:59 +02:00
parent f27c0f3434
commit 9820c5c3dd
3 changed files with 46 additions and 29 deletions

View File

@@ -12,7 +12,7 @@ edition = "2018"
anyhow = "1.0"
base64 = "0.12.0"
bincode = "1.1.4"
directories = "2.0.1"
directories-next = "1.0"
file-per-thread-logger = "0.1.1"
log = { version = "0.4.8", default-features = false }
serde = { version = "1.0.94", features = ["derive"] }