diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ed32b23eb..68a3e09ad 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "alpm" -version = "3.0.5" +version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "310ec5dc25b236ee96bebf975af2d2de85e61001a7c39a0a7436a414ff3f6490" +checksum = "d07c43bf396280fdda8928f725a89cdb8c525bba0240494f5da6b40aafe61387" dependencies = [ "alpm-sys", "bitflags", @@ -14,18 +14,18 @@ dependencies = [ [[package]] name = "alpm-sys" -version = "3.0.0" +version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a17e0cf15a06d4b86e30c606ee8808ad791300f3bd5e364c30360354b010bd" +checksum = "ad5eb56a41bf4f036c600aa1ddff354971926dd8ea29a3fb6589c6c375bf918b" dependencies = [ "pkg-config", ] [[package]] name = "alpm-utils" -version = "3.0.2" +version = "4.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1a65e48b9a950d1297b865a436733d496b6cdd966133a02fdadc6127dfe37e7" +checksum = "7a56cf9221faa08b5a59a9f429cc5338d8e77e22e1d7fe7d3179fc5c3acf7fc3" dependencies = [ "alpm", "pacmanconf", @@ -614,9 +614,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "linya" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3bcdb9f705e053eac4bf2b1c64522bcb2d0b442a80398e359bbec8595598af1" +checksum = "049dde0ecbd0297008048d189d30317bbb1def6b5886db5b50e26ace3013b80e" dependencies = [ "terminal_size", ] @@ -716,9 +716,9 @@ dependencies = [ [[package]] name = "pacmanconf" -version = "2.1.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31d9811f947c6ffc56eeafb789dfad44a7ea7cc383ac3bc6c9b23cd27100bbb1" +checksum = "5be1f202256ab200a4fdaaad0988015987876b0aa336ca7a7e685080bab58a40" dependencies = [ "cini", ] @@ -1094,12 +1094,12 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.1.17" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" +checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "libc", - "winapi", + "rustix", + "windows-sys 0.48.0", ] [[package]] @@ -1380,22 +1380,6 @@ dependencies = [ "web-sys", ] -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - [[package]] name = "winapi-util" version = "0.1.9" @@ -1405,12 +1389,6 @@ dependencies = [ "windows-sys 0.59.0", ] -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - [[package]] name = "windows-sys" version = "0.48.0" diff --git a/rust/aura-core/Cargo.toml b/rust/aura-core/Cargo.toml index 963a18b5a..0e6503858 100644 --- a/rust/aura-core/Cargo.toml +++ b/rust/aura-core/Cargo.toml @@ -12,8 +12,8 @@ keywords = ["archlinux", "alpm", "aur", "pacman"] [dependencies] r2d2-alpm = { version = "0.2", path = "../r2d2-alpm" } -alpm = "3.0" -alpm-utils = "3.0" +alpm = "4.0" +alpm-utils = "4.0" applying = "1.0.0" itertools = "0.13" log = "0.4" diff --git a/rust/aura-pm/Cargo.toml b/rust/aura-pm/Cargo.toml index d647adc79..1be20dd17 100644 --- a/rust/aura-pm/Cargo.toml +++ b/rust/aura-pm/Cargo.toml @@ -17,7 +17,7 @@ path = "src/main.rs" aura-core = { version = "0.8.3", path = "../aura-core" } r2d2-alpm = { version = "0.2", path = "../r2d2-alpm" } -alpm = "3.0" +alpm = "4.0" applying = "1.0.0" basic-toml = "0.1" clap = { version = "4.5", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] } @@ -27,11 +27,11 @@ i18n-embed = { version = "0.15", features = ["fluent-system"] } i18n-embed-fl = "0.9" itertools = "0.13" karen = "0.1" -linya = "0.3" +linya = "0.3.1" log = "0.4" nonempty-collections = "0.2.5" num_cpus = "1.16" -pacmanconf = "2.0" +pacmanconf = "3.0" r2d2 = "0.8" rayon = "1.8" rust-embed = "8.0" diff --git a/rust/r2d2-alpm/Cargo.toml b/rust/r2d2-alpm/Cargo.toml index f790545fb..4aeab34d1 100644 --- a/rust/r2d2-alpm/Cargo.toml +++ b/rust/r2d2-alpm/Cargo.toml @@ -10,9 +10,9 @@ license = "MIT" keywords = ["database", "pool", "archlinux", "alpm", "pacman"] [dependencies] -alpm = "3.0" -alpm-utils = "3.0" -pacmanconf = "2.0" +alpm = "4.0" +alpm-utils = "4.0" +pacmanconf = "3.0" r2d2 = "0.8" [dev-dependencies]