Skip to content

Commit

Permalink
Merge pull request #581 from cgwalters/bump-ostree-ext
Browse files Browse the repository at this point in the history
Update to ostree-ext 0.14.0, gvariant 0.5.0
  • Loading branch information
cgwalters committed Jun 4, 2024
2 parents 2dac4d7 + 5df73a4 commit 8cd0037
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 31 deletions.
76 changes: 48 additions & 28 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion hack/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ case $ID in
centos|rhel) dnf config-manager --set-enabled crb;;
fedora) dnf -y install dnf-utils ;;
esac
dnf -y builddep bootc
# Fetch the latest spec from fedora to ensure we've got the latest build deps
t=$(mktemp --suffix .spec)
curl -L -o ${t} https://src.fedoraproject.org/rpms/bootc/raw/rawhide/f/bootc.spec
dnf -y builddep "${t}"
rm -f "${t}"
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ anstream = "0.6.13"
anstyle = "1.0.6"
anyhow = "1.0.82"
camino = { version = "1.1.6", features = ["serde1"] }
ostree-ext = { version = "0.13.4" }
ostree-ext = { version = "0.14.0" }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version= "4.5.4", features = ["derive","cargo"] }
clap_mangen = { version = "0.2.20", optional = true }
cap-std-ext = "4"
hex = "^0.4.3"
fn-error-context = "0.2.1"
gvariant = "0.4.0"
gvariant = "0.5.0"
indicatif = "0.17.8"
libc = "^0.2.154"
liboverdrop = "0.1.0"
Expand Down

0 comments on commit 8cd0037

Please sign in to comment.