Skip to content

Commit 7edb2a2

Browse files
committed
fix: align all dependencies to image 0.25 and add cargo update to CI
1 parent c936963 commit 7edb2a2

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ jobs:
3535
with:
3636
targets: ${{ matrix.target }}
3737

38+
- name: Update dependencies
39+
run: cargo update
40+
3841
- name: Build Binary
3942
run: cargo build --release --target ${{ matrix.target }}
4043

4144
- name: Package Linux (DEB & RPM)
4245
if: matrix.os == 'ubuntu-latest'
4346
run: |
4447
cargo install cargo-deb cargo-generate-rpm
45-
# Symlink or copy the target binary to where deb/rpm expect it
4648
mkdir -p target/release
4749
cp target/${{ matrix.target }}/release/image-diff target/release/image-diff
4850
cargo deb --target ${{ matrix.target }} --no-build

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/cachevector/image-diff"
99
homepage = "https://github.com/cachevector/image-diff"
1010

1111
[dependencies]
12-
image = "0.24.9"
12+
image = "0.25.1"
1313
clap = { version = "4.5.4", features = ["derive"] }
1414
rayon = "1.10.0"
1515
walkdir = "2.5.0"

0 commit comments

Comments
 (0)