Bump pacmanconf from 1.0.0 to 2.0.0

Bumps [pacmanconf](https://github.com/Morganamilo/pacmanconf.rs) from 1.0.0 to 2.0.0.
- [Release notes](https://github.com/Morganamilo/pacmanconf.rs/releases)
- [Commits](https://github.com/Morganamilo/pacmanconf.rs/commits)

---
updated-dependencies:
- dependency-name: pacmanconf
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-07-04 18:15:47 +00:00 committed by GitHub
parent b7ffba977c
commit 4b08890e77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 19 deletions

21
Cargo.lock generated
View File

@ -37,7 +37,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01c6892a7ced000868007e9ee99a80680c96f5b3e535e9ade81a54501e391232" checksum = "01c6892a7ced000868007e9ee99a80680c96f5b3e535e9ade81a54501e391232"
dependencies = [ dependencies = [
"alpm", "alpm",
"pacmanconf 2.0.0", "pacmanconf",
] ]
[[package]] [[package]]
@ -101,7 +101,7 @@ dependencies = [
"glib", "glib",
"gtk", "gtk",
"once_cell", "once_cell",
"pacmanconf 1.0.0", "pacmanconf",
"serde", "serde",
"serde_json", "serde_json",
"subprocess", "subprocess",
@ -146,12 +146,6 @@ dependencies = [
"smallvec", "smallvec",
] ]
[[package]]
name = "cini"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "895f4cd6403d7bd85e13ff3ec635d58183e5e708e7bd70430a91d661b04548e2"
[[package]] [[package]]
name = "cini" name = "cini"
version = "1.0.0" version = "1.0.0"
@ -535,22 +529,13 @@ version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac8b1a9b2518dc799a2271eff1688707eb315f0d4697aa6b0871369ca4c4da55" checksum = "ac8b1a9b2518dc799a2271eff1688707eb315f0d4697aa6b0871369ca4c4da55"
[[package]]
name = "pacmanconf"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "faba895e4237d5dfd3459a4c0ef807b3510e088d28e7f5fd71a72962af84fef4"
dependencies = [
"cini 0.1.1",
]
[[package]] [[package]]
name = "pacmanconf" name = "pacmanconf"
version = "2.0.0" version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba64fdfa5d4589657dc8c8497b67322d8a64c162357ea0359656bfe23eec6185" checksum = "ba64fdfa5d4589657dc8c8497b67322d8a64c162357ea0359656bfe23eec6185"
dependencies = [ dependencies = [
"cini 1.0.0", "cini",
] ]
[[package]] [[package]]

View File

@ -8,7 +8,7 @@ edition = "2021"
[dependencies] [dependencies]
alpm = "2.2.1" alpm = "2.2.1"
alpm-utils = "2.0.0" alpm-utils = "2.0.0"
pacmanconf = "1.0.0" pacmanconf = "2.0.0"
subprocess = "0.2.9" subprocess = "0.2.9"
once_cell = "1.12.1" once_cell = "1.12.1"