-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (45 loc) · 1.8 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
[package]
name = "view_skater"
version = "0.1.0"
edition = "2021"
description = "A fast image viewer for browsing large collections of images."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
iced_native = "0.10"
env_logger = "0.10"
console_log = "1.0"
log = "0.4.20"
tokio = { version = "1.32", features = ["full"] }
rfd = "0.12"
num-traits = "0.2"
cargo-bundle = "0.6.0"
alphanumeric-sort = "1.5.3"
image = "0.23"
futures = "0.3"
once_cell = "1.16"
[target.'cfg(not(target_os = "linux"))'.dependencies]
iced_custom = { package = "iced", git = "https://github.com/ggand0/iced.git", rev = "6121eaca5aea4a61d419f2c0eba1f8fc67b048f1", features = ["image", "tokio", "svg", "lazy"] }
iced_aw_custom = { package = "iced_aw", git = "https://github.com/ggand0/iced_aw.git", rev = "193934d6436e423f346b31c998e5168f4f903ad8", features = [
"menu",
"quad",
"icon_text"
] }
iced_widget_custom = { package = "iced_widget", git = "https://github.com/ggand0/iced.git", rev = "6121eaca5aea4a61d419f2c0eba1f8fc67b048f1" }
[target.'cfg(target_os = "linux")'.dependencies]
iced = {version = "0.10", features = ["image", "tokio", "svg", "lazy", "debug"]}
iced_aw = { version = "0.7.0", features = [
"menu",
"quad",
"icon_text"
] }
iced_widget = { package = "iced_widget", version = "0.1.1" }
[build-dependencies]
winres = "0.1.12"
[package.metadata.winres]
OriginalFilename = "view_skater.exe"
FileDescription = "A fast image viewer for browsing large collections of images."
[package.metadata.bundle]
name = "ViewSkater"
identifier = "com.ggando.viewskater"
icon = ["assets/icon_16.png", "assets/icon_32.png", "assets/icon_48.png", "assets/icon_128.png", "assets/icon_256.png"]
short_description = "A fast image viewer for browsing large collections of images."