Skip to content

Commit

Permalink
fix: bump alpm to account for newest Pacman release
Browse files Browse the repository at this point in the history
Fixes #931
  • Loading branch information
fosskers committed Sep 14, 2024
1 parent a9ecf5b commit d798704
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 44 deletions.
50 changes: 14 additions & 36 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions rust/aura-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rust/aura-pm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rust/r2d2-alpm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit d798704

Please sign in to comment.