Update GTK dependency (#857)

* Update GTK dependency

* 1.63 is minimal now
This commit is contained in:
Rafał Mikrut 2022-10-22 20:56:16 +02:00 committed by GitHub
parent ddc4def99e
commit 53492395c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 425 additions and 247 deletions

View File

@ -12,7 +12,7 @@ jobs:
linux-default:
strategy:
matrix:
toolchain: [ stable, 1.62.0 ]
toolchain: [ stable, 1.63.0 ]
type: [ release ]
runs-on: ubuntu-22.04
steps:
@ -39,7 +39,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-C debuginfo=0"
if: ${{ (matrix.type == 'release') && (matrix.toolchain == '1.62.0') }}
if: ${{ (matrix.type == 'release') && (matrix.toolchain == '1.63.0') }}
- name: Build Release
run: cargo build --release

612
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -3,17 +3,17 @@ name = "czkawka_cli"
version = "5.0.2"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021"
rust-version = "1.62"
rust-version = "1.63"
description = "CLI frontend of Czkawka"
license = "MIT"
homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
clap = { version = "3.2.21", features = ["derive"] }
clap = { version = "3.2.22", features = ["derive"] }
# For enum types
image_hasher = "1.0.0"
image_hasher = "1.1.0"
[dependencies.czkawka_core]
path = "../czkawka_core"

View File

@ -3,7 +3,7 @@ name = "czkawka_core"
version = "5.0.2"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021"
rust-version = "1.62"
rust-version = "1.63"
description = "Core of Czkawka app"
license = "MIT"
homepage = "https://github.com/qarmin/czkawka"
@ -11,7 +11,7 @@ repository = "https://github.com/qarmin/czkawka"
[dependencies]
humansize = "2.0.0"
humansize = "2.1.0"
rayon = "1.5.3"
crossbeam-channel = "0.5.6"
@ -19,9 +19,9 @@ crossbeam-channel = "0.5.6"
directories-next = "2.0.0"
# Needed by similar images
image_hasher = "1.0.0"
image_hasher = "1.1.0"
bk-tree = "0.4.0"
image = "0.24.3"
image = "0.24.4"
hamming = "0.1.3"
# Needed by same music
@ -29,17 +29,17 @@ bitflags = "1.3.2"
lofty = "0.8.1"
# Futures - needed by async progress sender
futures = "0.3.24"
futures = "0.3.25"
# Needed by broken files
zip = { version = "0.6.2", features = ["aes-crypto", "bzip2", "deflate", "time"], default-features = false }
zip = { version = "0.6.3", features = ["aes-crypto", "bzip2", "deflate", "time"], default-features = false }
audio_checker = "0.1.0"
pdf = "0.7.2"
# Hashes for duplicate files
blake3 = "1.3.1"
crc32fast = "1.3.2"
xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
tempfile = "3.3.0"
@ -48,15 +48,15 @@ vid_dup_finder_lib = "0.1.1"
ffmpeg_cmdline_utils = "0.1.2"
# Saving/Loading Cache
serde = "1.0.144"
serde = "1.0.147"
bincode = "1.3.3"
serde_json = "1.0.85"
serde_json = "1.0.87"
# Language
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.4.1"
once_cell = "1.14.0"
rust-embed = "6.4.2"
once_cell = "1.15.0"
# Raw image files
rawloader = "0.37.1"
@ -69,8 +69,8 @@ infer = "0.9.0"
num_cpus = "1.13.1"
# Heif/Heic
libheif-rs = { version = "0.15.0", optional = true }
anyhow = { version = "1.0.65", optional = true }
libheif-rs = { version = "0.15.1", optional = true }
anyhow = { version = "1.0.66", optional = true }
[features]
default = []

View File

@ -3,39 +3,39 @@ name = "czkawka_gui"
version = "5.0.2"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021"
rust-version = "1.62"
rust-version = "1.63"
description = "GTK frontend of Czkawka"
license = "MIT"
homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
gdk4 = "0.4.8"
glib = "0.15.12"
gdk4 = "0.5.0"
glib = "0.16.1"
humansize = "2.0.0"
humansize = "2.1.0"
chrono = "0.4.22"
# Used for sending stop signal across threads
crossbeam-channel = "0.5.6"
# To get information about progress
futures = "0.3.24"
futures = "0.3.25"
# For saving/loading config files to specific directories
directories-next = "2.0.0"
# For opening files
open = "3.0.2"
open = "3.0.3"
# To get image preview
image = "0.24.3"
image = "0.24.4"
# To be able to use custom select
regex = "1.6.0"
# To get image_hasher types
image_hasher = "1.0.0"
image_hasher = "1.1.0"
# Move files to trash
trash = "2.1.5"
@ -46,14 +46,14 @@ fs_extra = "1.2.0"
# Language
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.4.1"
once_cell = "1.14.0"
rust-embed = "6.4.2"
once_cell = "1.15.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }
[dependencies.gtk4]
version = "0.4.8"
version = "0.5.0"
default-features = false
features = ["v4_6"]

View File

@ -11,7 +11,7 @@ Support for heif images is optional and require to install libheif library.
| Program | Min | What for |
|---------|------|-------------------------------------------------------------------------------|
| Rust | 1.62 | Czkawka, aims to support the latest available version of Rust on Ubuntu 22.04 |
| Rust | 1.63 | Czkawka, aims to support the latest available version of Rust on Ubuntu 22.04 |
| GTK | 4.6 | Only for the `GTK` backend |
#### Debian / Ubuntu