Update to shellexpand 3.1.0 so we can use dirs 5 everywhere

Results of precisely
  cargo update -p shellexpand

Incorporates changes I have made to shellexpand to allow use of
dirs 4 *or* dirs 5.
This commit is contained in:
Ian Jackson 2023-03-24 11:30:14 +00:00
parent ba88761520
commit 1cdfd4f109
1 changed files with 7 additions and 27 deletions

34
Cargo.lock generated
View File

@ -1048,16 +1048,7 @@ version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74be3be809c18e089de43bdc504652bb2bc473fca8756131f8689db8cf079ba9" checksum = "74be3be809c18e089de43bdc504652bb2bc473fca8756131f8689db8cf079ba9"
dependencies = [ dependencies = [
"dirs-sys 0.4.0", "dirs-sys",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys 0.3.7",
] ]
[[package]] [[package]]
@ -1066,18 +1057,7 @@ version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd" checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd"
dependencies = [ dependencies = [
"dirs-sys 0.4.0", "dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
] ]
[[package]] [[package]]
@ -1327,7 +1307,7 @@ name = "fs-mistrust"
version = "0.6.2" version = "0.6.2"
dependencies = [ dependencies = [
"derive_builder_fork_arti", "derive_builder_fork_arti",
"dirs 5.0.0", "dirs",
"educe", "educe",
"libc", "libc",
"once_cell", "once_cell",
@ -3132,11 +3112,11 @@ dependencies = [
[[package]] [[package]]
name = "shellexpand" name = "shellexpand"
version = "3.0.0" version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd1c7ddea665294d484c39fd0c0d2b7e35bbfe10035c5fe1854741a57f6880e1" checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
dependencies = [ dependencies = [
"dirs 4.0.0", "dirs",
] ]
[[package]] [[package]]
@ -3801,7 +3781,7 @@ dependencies = [
"config", "config",
"derive_builder_fork_arti", "derive_builder_fork_arti",
"directories", "directories",
"dirs 5.0.0", "dirs",
"educe", "educe",
"either", "either",
"fs-mistrust", "fs-mistrust",