forked from ArturKovacs/emulsion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
94 lines (87 loc) · 2.07 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
86
87
88
89
90
91
92
93
94
[package]
name = "emulsion"
version = "9.0.0"
description = "A fast and minimalistic image viewer"
repository = "https://github.com/ArturKovacs/emulsion"
authors = ["Artur Barnabas <[email protected]>"]
license = "MIT"
readme = "README.md"
edition = "2018"
build = "build.rs"
[package.metadata.bundle]
name = "Emulsion"
identifier = "io.github.arturkovacs.emulsion"
icon = ["resource_dev/emulsion.png"]
resources = ["LICENSE.txt"]
short_description = "A lightweight and minimalistic image viewer"
copyright = "Copyright (c) 2020 The Emulsion Contributors"
linux_exec_args = "%f"
linux_mime_types = [
"image/jpeg",
"image/jpg",
"image/pjpeg",
"image/png",
"image/apng",
"image/gif",
"image/webp",
"image/tiff",
"image/bmp",
"image/avif",
"image/svg+xml",
"image/svg",
"image/x-png",
"image/x-tga",
"image/x-targa",
"image/x-bmp",
"image/x-icon",
"image/vnd.microsoft.icon",
"image/vnd.radiance",
"image/x‑portable‑bitmap",
"image/x‑portable‑graymap",
"image/x‑portable‑pixmap",
"image/x‑portable‑anymap"
]
[workspace]
members = [
"subcrates/gelatin",
]
[profile.dev.package."*"]
opt-level = 1
[profile.dev.build-override]
opt-level = 1
[profile.release]
lto = "thin"
[features]
default = []
networking = ["ureq"]
avif = ["libavif-image"]
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
[dependencies]
gelatin = { path = "./subcrates/gelatin", version = "0.7" }
ureq = { version = "2.0.2", features = ["json"], optional = true }
lazy_static = "1.4.0"
directories-next = "2.0.0"
open = "1.5.0"
sys-info = "0.9.0"
error-chain = "0.12.4"
backtrace = "0.3.56"
serde = { version = "1.0.123", features = ["derive"] }
toml = "0.5.8"
rand = "0.8.3"
lexical-sort = "0.3.1"
trash = "2.0.1"
clap = { version = "2.33.3", default-features = false }
kamadak-exif = "0.5.3"
arboard = { version = "1.2.1", features = ["wayland-data-control"] }
resvg = "0.14.1"
usvg = "0.14.1"
tiny-skia = "0.5.1"
log = "0.4"
env_logger = "0.8"
rfd = "0.6.3"
[dependencies.libavif-image]
version = "0.6.0"
default-features = false
features = ["codec-dav1d"]
optional = true