-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
92 lines (86 loc) · 2.44 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
[package]
name = "lightningview"
description = "A fast image viewer that supports a wide range of image formats."
version = "1.8.0"
edition = "2021"
build = "build.rs"
authors = ["The LightningView developers"]
website = "https://lightningview.app"
repository = "https://github.com/dividebysandwich/LightningView"
[dependencies]
const_format = "0.2.33"
fltk ={ version = "1.4.35", features = ["fltk-bundled"] }
image = "0.25.5"
rand = "0.8.5"
log = "0.4.22"
env_logger = "0.11.5"
arboard = { version = "3.4.1", features = ["wayland-data-control"] }
rustronomy-fits = "0.2.0"
[dependencies.imagepipe]
version = "0.5.0"
path = "../imagepipe"
[dependencies.rawler]
version = "0.6.0"
path = "../dnglab/rawler"
[patch.crates-io]
fltk = { git = "https://github.com/fltk-rs/fltk-rs" }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58.0", features = ["Win32_UI_Shell"]}
winreg = "0.52.0"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
windows = "0.58.0"
[package.metadata.bundle]
name = "LightningView"
identifier = "com.lightningview"
version = "1.8.0"
icon = ["logo_256.png"]
copyright = "2024, the LightningView developers"
category = "Graphics and Design"
short_description = "A fast image viewer"
long_description = "LightningView is a fast image viewer that supports a wide range of image formats. It is designed to be fast and responsive, with a minimal interface that gets out of your way. LightningView is perfect for quickly viewing and sorting through large collections of images."
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/vnd.microsoft.icon",
"image/vnd.radiance",
"image/x‑portable‑bitmap",
"image/x‑portable‑graymap",
"image/x‑portable‑pixmap",
"image/x‑portable‑anymap",
"image/x-sony-arw",
"image/x-canon-cr2",
"image/x-canon-crw",
"image/x-kodak-dcr",
"image/x-adobe-dng",
"image/x-epson-erf",
"image/x-kodak-k25",
"image/x-kodak-kdc",
"image/x-minolta-mrw",
"image/x-nikon-nef",
"image/x-olympus-orf",
"image/x-pentax-pef",
"image/x-fuji-raf",
"image/x-panasonic-raw",
"image/x-sony-sr2",
"image/x-sony-srf",
"image/x-sigma-x3f",
"image/x-samsung-srw",
"image/x-panasonic-rw2",
"application/fits"
]