Switch to shellexpand-fork version of shellexpand

Apropos discussion in
  https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/274
This commit is contained in:
Ian Jackson 2022-03-02 12:14:51 +00:00
parent f7009e238a
commit 72bb8e7f28
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@ -2678,10 +2678,10 @@ dependencies = [
]
[[package]]
name = "shellexpand"
version = "2.1.0"
name = "shellexpand-fork"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829"
checksum = "5b9b96d72c00ea377d8dfe6177badd0a6f42b4cb3122479ffe44fee2532d85ee"
dependencies = [
"dirs-next",
]
@ -3164,7 +3164,7 @@ dependencies = [
"dirs",
"once_cell",
"serde",
"shellexpand",
"shellexpand-fork",
"thiserror",
"tor-error",
"tracing",

View File

@ -21,7 +21,7 @@ thiserror = "1"
derive_builder = "0.10"
once_cell = "1"
serde = { version = "1.0.103", features = ["derive"] }
shellexpand = { version = "2.1.0", optional = true }
shellexpand = { version = "2.1", package = "shellexpand-fork", optional = true }
tracing = "0.1.18"
directories = { version = "4", optional = true }