-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
72 lines (69 loc) · 1.63 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
[package]
name = "alloy"
version = "1.0.0"
description = "A fast and minimalistic image viewer based on emulsion"
repository = "https://github.com/ardaku/alloy"
license = "MIT"
readme = "README.md"
edition = "2021"
build = "build.rs"
[package.metadata.bundle]
name = "Alloy"
identifier = "org.ardaku.alloy"
icon = ["resource_dev/alloy.png"]
resources = ["LICENSE.txt"]
short_description = "A lightweight and minimalistic image viewer based on emulsion"
copyright = "Copyright (c) 2020 The Emulsion Contributors, Copyright (c) 2022-2024 The Alloy 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"
]
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[dependencies]
arboard = "3.4"
backtrace = "0.3"
cgmath = "0.18"
directories = "5.0"
env_logger = "0.11"
glium = "0.32"
image = "0.25"
kamadak-exif = "0.6"
lazy_static = "1.4"
lexical-sort = "0.3"
log = "0.4"
open = "5.0"
pico-args = "0.5"
rand = "0.8"
resvg = "0.44"
serde = { version = "1.0.210", features = ["derive"] }
sys-info = "0.9"
thiserror = "2.0"
tiny-skia = "0.11"
toml = "0.8"
trash = { version = "5.1", default-features = false }
typed-builder = "0.20"
usvg = "0.44"
winit = "0.28"