-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.29 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
[package]
name = "foxfire"
description = "A simple photo viewer."
version = "0.0.0"
authors = ["Abelian Dynamics"]
edition = "2021"
build = "build.rs"
[profile.dev]
opt-level = 3
[profile.release]
strip = true
#opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
open_with = { path = "dependencies/open_with" }
trash = "2.1.5"
image = "0.24.2"
druid = { git = "https://github.com/longmathemagician/druid.git", features = ["im", "svg"] }
dark-light = "0.2.2"
wallpaper = "3.2.0"
preferences = "1.1.0"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[target.'cfg(windows)'.dependencies]
winapi = "0.3"
[patch."https://github.com/longmathemagician/piet.git"]
piet-common = { path = "dependencies/piet/piet-common" }
[patch."https://github.com/longmathemagician/druid.git"]
druid = { path = "dependencies/druid/druid" }
[package.metadata.bundle]
name = "Foxfire"
identifier = "com.abeliandynamics.foxfire"
icon = ["resources/icons/32x32.png", "resources/icons/128x128.png", "resources/icons/[email protected]"]
category = "public.app-category.graphics-design"
linux_exec_args = "%f"
linux_mime_types = ["image/png", "image/jpeg", "image/bmp"]
short_description = "Photo viewer."
long_description = """
Foxfire is a minimalist photo viewer, written in Rust using the
Druid UI framework.
"""