From 72bb8e7f28d565972597060827987eef124f7cba Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 2 Mar 2022 12:14:51 +0000 Subject: [PATCH] Switch to shellexpand-fork version of shellexpand Apropos discussion in https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/274 --- Cargo.lock | 8 ++++---- crates/tor-config/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 10459abea..62bf5eb32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml index 260dbcb29..78eb20d2f 100644 --- a/crates/tor-config/Cargo.toml +++ b/crates/tor-config/Cargo.toml @@ -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 }