-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
72 lines (67 loc) · 2.25 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
[workspace]
resolver = "2"
members = [
"crates/icy_draw",
"crates/icy_engine",
"crates/icy_engine_gui",
"crates/icy_play",
"crates/icy_sauce",
"crates/icy_sixel",
"crates/icy_term",
"crates/icy_view",
"crates/icy_view_gui",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
authors = ["Mike Krüger <mkrueger@posteo.de>"]
license = "MIT or Apache-2.0"
[workspace.dependencies]
icy_engine = { path = "crates/icy_engine" }
icy_engine_gui = { path = "crates/icy_engine_gui" }
icy_sauce = { path = "crates/icy_sauce" }
icy_sixel = { path = "crates/icy_sixel" }
icy_view_gui = { path = "crates/icy_view_gui" }
codepages = { git ="https://github.com/mkrueger/icy_board" }
zip = { version = "2.2.0"}
lazy_static = "1.4.0"
semver = "1.0.20"
thiserror = "2.0.11"
clap = { version = "4.5.26", features = ["derive"] }
log = "0.4.25"
chrono = { version = "0.4.37", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
walkdir = "2.5.0"
i18n-embed = { version = "0.15.3", features = ["fluent-system", "desktop-requester"]}
i18n-embed-fl = "0.9.3"
fluent-bundle = "0.15.2"
rust-embed = "8.3.0"
once_cell = "1.18.0"
toml = "0.8.19"
bstr = "1.11.3"
regex = "1.10.6"
directories = "6.0.0"
tokio = { version = "1.43.0", features = ["full"] }
rodio = { version = "0.20.1" }
egui = "0.30.0"
eframe = "0.30.0"
# eframe = { version = "0.27.2", default-features = false, features = [
# "accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
# "default_fonts", # Embed the default egui fonts.
# "glow", # Use the glow rendering backend. Alternative: "wgpu".
# "persistence", # Enable restoring app state when restarting the app.
# ], optional = true }
egui_extras = { version="0.30.0", features = ["all_loaders", "svg", "image"] }
egui_glow = "0.30.0"
glow = "0.16.0"
egui-modal = "0.6.0"
egui-bind = "0.15.0"
#egui_file = "0.19.0"
egui_file = { git = "https://github.com/mkrueger/egui_file", branch = "bump_egui" }
egui-notify = "0.18.0"
[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*