diff --git a/Cargo.lock b/Cargo.lock index 63d2aa9..459cf55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,7 +37,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01c6892a7ced000868007e9ee99a80680c96f5b3e535e9ade81a54501e391232" dependencies = [ "alpm", - "pacmanconf 2.0.0", + "pacmanconf", ] [[package]] @@ -101,7 +101,7 @@ dependencies = [ "glib", "gtk", "once_cell", - "pacmanconf 1.0.0", + "pacmanconf", "serde", "serde_json", "subprocess", @@ -146,12 +146,6 @@ dependencies = [ "smallvec", ] -[[package]] -name = "cini" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "895f4cd6403d7bd85e13ff3ec635d58183e5e708e7bd70430a91d661b04548e2" - [[package]] name = "cini" version = "1.0.0" @@ -535,22 +529,13 @@ version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" 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]] name = "pacmanconf" version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba64fdfa5d4589657dc8c8497b67322d8a64c162357ea0359656bfe23eec6185" dependencies = [ - "cini 1.0.0", + "cini", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index c3f59cf..0e428cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] alpm = "2.2.1" alpm-utils = "2.0.0" -pacmanconf = "1.0.0" +pacmanconf = "2.0.0" subprocess = "0.2.9" once_cell = "1.12.1"