-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
85 lines (79 loc) · 2.43 KB
/
Cargo.toml
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
[workspace.package]
version = "1.2.0-alpha"
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"
rust-version = "1.80"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
[profile.release.package]
zbus.opt-level = "z"
zvariant.opt-level = "z"
[profile.dev.package.image]
opt-level = 3
[workspace]
resolver = "2"
members = [
"glycin",
"glycin-utils",
"libglycin",
"libglycin/libglycin-gtk4",
"loaders/*",
"tests",
"tools",
]
default-members = ["glycin", "glycin-utils"]
[workspace.lints.clippy]
arithmetic_side_effects = "forbid"
cast_possible_truncation = "forbid"
cast_possible_wrap = "forbid"
[workspace.dependencies]
async-fs = "2.1.0"
async-io = "2.3.2"
async-lock = "3.3.0"
blocking = "1.6.1"
cairo-rs = "0.20"
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.9.5", features = ["v4_16"] }
gio = { version = "0.20.0" }
glib = { version = "0.20.0" }
glycin = { path = "glycin/", default-features = false }
glycin-utils = { version = "3.0.0-alpha", path = "glycin-utils/", default-features = false }
gufo = { version = "0.2.0-alpha.1", features = ["all-image-formats"] }
gufo-common = { version = "0.2.0-alpha.1", features = ["serde"] }
gufo-exif = { version = "0.2.0-alpha.1" }
gufo-jpeg = { version = "0.2.0-alpha.1" }
image = { version = "0.25.2", default-features = false }
lcms2 = "6.0.3"
lcms2-sys = "4.0.4"
libc = "0.2.152"
libseccomp = "0.3.0"
log = "0.4.0"
memfd = "0.6.3"
memmap = { package = "memmap2", version = "0.9.0" }
nix = { version = "0.29.0", features = ["fs", "resource", "signal"] }
paste = "1.0.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"] }
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 = "4.3.0", default-features = false, features = ["p2p"] }