This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
70 lines (61 loc) · 2.17 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
[package]
name = "icy_view"
version = "0.6.1"
edition = "2021"
description = "A fast ansi art viewer."
authors = ["Mike Krüger <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/mkrueger/icy_view"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eframe = "0.27.2"
egui_extras = { version="0.27.2", features = ["svg", "image"] }
egui_glow = "0.27.2"
glow = "0.13.1"
memmap = "0.7.0"
clap = { version="4.4.0", features = ["derive"] }
zip = "0.6.6"
directories = "5.0.1"
log = "0.4"
env_logger = "0.11.1"
i18n-embed = { version = "0.14.0", features = ["fluent-system", "desktop-requester"]}
i18n-embed-fl = "0.8.0"
once_cell = "1.16.0"
rust-embed = "8.0.0"
egui-modal = "0.3.3"
egui-notify = "0.14.0"
lazy_static = "1.4.0"
image = { version = "0.25.1", features = ["jpeg", "png", "gif", "bmp"] }
view_library = { path ="./view_library" }
icy_engine = { git ="https://github.com/mkrueger/icy_engine"}
icy_engine_gui = { git ="https://github.com/mkrueger/icy_engine"}
#icy_engine = { path ="../icy_engine" }
#icy_engine_gui = { path ="../icy_engine/icy_engine_gui" }
github_release_check = "0.2.1"
semver = "1.0.20"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
[build-dependencies]
winres = "0.1"
[package.metadata.bundle]
name = "Icy View"
identifier = "com.github.icy_view"
icon = [ "build/mac/[email protected]" ]
resources = []
copyright = "Copyright (c) Mike Krüger 2023. All rights reserved."
[package.metadata.deb]
section="utils"
copyright = "Copyright (c) Mike Krüger 2023. All rights reserved."
revision=""
license-file="build/license.rtf"
depends = "libasound2"
assets = [
["target/release/icy_view", "/usr/bin/", "755"],
["build/linux/icy_view.desktop", "/usr/share/applications/", "644"],
["build/linux/128x128.png", "/usr/share/icons/hicolor/128x128/apps/icy_view.png", "644"],
["build/linux/256x256.png", "/usr/share/icons/hicolor/256x256/apps/icy_view.png", "644"],
]