1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
[workspace.package]
version = "2.0.4"
authors = ["Sophie Herold"]
description = "Sandboxed image decoding"
license = "MPL-2.0 OR LGPL-2.1-or-later"
homepage = "https://gitlab.gnome.org/GNOME/glycin"
repository = "https://gitlab.gnome.org/GNOME/glycin"
edition = "2021"
# Would be 1.83 without moxcms
rust-version = "1.85"
[profile.release]
lto = true
codegen-units = 1
[profile.release.package]
zbus.opt-level = "z"
zvariant.opt-level = "z"
[workspace]
resolver = "2"
members = [
"glycin-dev-tools",
"glycin-loaders/*",
"glycin-thumbnailer",
"libglycin",
"libglycin/libglycin-gtk4",
"tests",
]
default-members = [
"glycin-dev-tools",
"glycin-thumbnailer",
]
[workspace.lints.clippy]
arithmetic_side_effects = "forbid"
cast_possible_truncation = "forbid"
cast_possible_wrap = "forbid"
dbg_macro = "forbid"
[workspace.dependencies]
async-fs = "2.1.0"
async-global-executor = "3.1.0"
async-io = "2.3.2"
async-lock = "3.3.0"
async-task = "4.0.0"
bitflags = "2.9.0"
blocking = "1.6.1"
cairo-rs = "0.21"
env_logger = { version = "0.11.0", default-features = false, features = [
"humantime",
] }
futures-channel = "0.3.30"
futures-lite = { version = "2.1.0" }
futures-task = "0.3.30"
futures-timer = "3.0.3"
futures-util = "0.3.30"
gdk = { package = "gdk4", version = "0.10.0", features = ["v4_16"] }
# Use newer version to fix issues
gif = "0.13.3"
gio = { version = "0.21.0", features = ["v2_62"] }
glib = { version = "0.21.0", features = ["v2_68"] }
glycin = { version = "3.0.8", default-features = false }
glycin-common = { version = "1.0.0" }
glycin-utils = { version = "4.0.3", default-features = false }
gufo = { version = "0.3.0", features = ["all-image-formats"] }
gufo-common = { version = "1.0.1", features = ["serde"] }
gufo-exif = { version = "0.3.0" }
gufo-jpeg = { version = "0.3.0" }
half = "2.4.1"
hayro-jpeg2000 = "0.3.1"
image = { version = "0.25.7", default-features = false }
lcms2 = "6.0.3"
lcms2-sys = "4.0.4"
libc = "0.2.152"
libseccomp = "0.4.0"
log = "0.4.0"
memfd = "0.6.3"
memmap = { package = "memmap2", version = "0.9.0" }
nix = { version = "0.30.0", features = ["fs", "resource", "signal"] }
paste = "1.0.0"
png = "0.17.0"
rayon = "1.10.0"
rmp-serde = "1.3.0"
safe-transmute = "0.11.2"
serde = { version = "1.0.162", features = ["derive"] }
static_assertions = { version = "1.1.0" }
system-deps = "7.0"
thiserror = "2.0.3"
tokio = { version = "1.35.1", features = [
"fs",
"rt",
"rt-multi-thread",
"time",
] }
tokio-stream = { version = "0.1.15", features = ["fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.0", features = ["env-filter", "fmt"] }
yeslogic-fontconfig-sys = "6.0.0"
zbus = { version = "5.10.0", default-features = false, features = ["p2p"] }
# Require latest zvariant due to SIGPIPE bugfix
# <https://github.com/z-galaxy/zbus/commit/82533888fe1780581bf1d0c3025f2fd37eac65b5>
zvariant = { version = "5.9.2", default-features = false }
zerocopy = "0.8.12"
|