Cargo.toml - icy_draw - [fork] icy_draw is the successor to mystic draw.
(HTM) git clone https://git.drkhsh.at/icy_draw.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
Cargo.toml (1849B)
---
1 [package]
2 name = "icy_view"
3 version = "0.6.1"
4 authors.workspace = true
5 edition.workspace = true
6 license.workspace = true
7 repository = "https://github.com/mkrueger/icy_tools"
8 description = "An file viewer for ANSI & ASCII art and other text-based art forms."
9
10 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
12 [dependencies]
13 eframe = { workspace = true }
14 egui_extras = { workspace = true }
15 egui_glow = { workspace = true }
16 glow = { workspace = true }
17 memmap = "0.7.0"
18 clap = { workspace = true }
19 zip = { workspace = true }
20 directories = { workspace = true }
21 log = { workspace = true }
22 env_logger = "0.11"
23 i18n-embed = { workspace = true }
24 i18n-embed-fl = { workspace = true }
25 once_cell = { workspace = true }
26 rust-embed = { workspace = true }
27 egui-modal = { workspace = true }
28 egui-notify = { workspace = true }
29 lazy_static = { workspace = true }
30
31 image = { version = "0.25.1", features = ["jpeg", "png", "gif", "bmp"] }
32
33 icy_sauce = { workspace = true }
34 icy_engine = { workspace = true }
35 icy_engine_gui = { workspace = true }
36 icy_view_gui = { workspace = true }
37
38 semver = { workspace = true }
39
40 [build-dependencies]
41 winres = "0.1"
42
43 [package.metadata.bundle]
44 name = "Icy View"
45 identifier = "com.github.icy_view"
46 icon = [ "build/mac/128x128@2x.png" ]
47 resources = []
48 copyright = "Copyright (c) Mike Krüger 2023. All rights reserved."
49
50 [package.metadata.deb]
51 section="utils"
52 copyright = "Copyright (c) Mike Krüger 2023. All rights reserved."
53 revision=""
54 depends = "libasound2"
55 assets = [
56 ["target/release/icy_view", "/usr/bin/", "755"],
57 ["build/linux/icy_view.desktop", "/usr/share/applications/", "644"],
58 ["build/linux/128x128.png", "/usr/share/icons/hicolor/128x128/apps/icy_view.png", "644"],
59 ["build/linux/256x256.png", "/usr/share/icons/hicolor/256x256/apps/icy_view.png", "644"],
60 ]