Bump shellexpand from 2.1.0 to 2.1.2 (#977)

Bumps [shellexpand](https://gitlab.com/ijackson/rust-shellexpand) from 2.1.0 to 2.1.2.
- [Release notes](https://gitlab.com/ijackson/rust-shellexpand/tags)
- [Commits](https://gitlab.com/ijackson/rust-shellexpand/commits/shellexpand/2.1.2)

---
updated-dependencies:
- dependency-name: shellexpand
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James Hodgkinson <james@terminaloutcomes.com>
This commit is contained in:
dependabot[bot] 2022-08-09 08:51:03 +10:00 committed by GitHub
parent f23004b3f2
commit 7e617a6320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 12 deletions

21
Cargo.lock generated
View file

@ -1225,20 +1225,19 @@ dependencies = [
] ]
[[package]] [[package]]
name = "dirs-next" name = "dirs"
version = "2.0.0" version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "dirs-sys",
"dirs-sys-next",
] ]
[[package]] [[package]]
name = "dirs-sys-next" name = "dirs-sys"
version = "0.1.2" version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [ dependencies = [
"libc", "libc",
"redox_users", "redox_users",
@ -3615,11 +3614,11 @@ dependencies = [
[[package]] [[package]]
name = "shellexpand" name = "shellexpand"
version = "2.1.0" version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829" checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
dependencies = [ dependencies = [
"dirs-next", "dirs",
] ]
[[package]] [[package]]

View file

@ -38,7 +38,7 @@ clap = { version = "^3.2", features = ["derive", "env"] }
libc = "^0.2.126" libc = "^0.2.126"
serde = { version = "^1.0.142", features = ["derive"] } serde = { version = "^1.0.142", features = ["derive"] }
serde_json = "^1.0.83" serde_json = "^1.0.83"
shellexpand = "^2.1.0" shellexpand = "^2.1.2"
rayon = "^1.5.3" rayon = "^1.5.3"
time = { version = "=0.2.27", features = ["serde", "std"] } time = { version = "=0.2.27", features = ["serde", "std"] }
qrcode = { version = "^0.12.0", default-features = false } qrcode = { version = "^0.12.0", default-features = false }