-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
66 lines (59 loc) · 1.52 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
[package]
name = "silicate"
version = "0.2.1"
edition = "2021"
authors = ["An Tran <[email protected]>"]
description = "Cross-platform GPU-accelerated Procreate file viewer.s"
readme = "README.md"
repository = "https://github.com/Avarel/procreate-rs"
license = "MIT"
[workspace]
members = [
# "libs/egui_dock",
"libs/lz4_flex"
]
[features]
default = []
[dependencies]
# Procreate support
zip = { version = "0.6", default-features = false, features = ["deflate"] }
lz4_flex = { path = "libs/lz4_flex" }
minilzo-rs = "0.6.0"
plist = "1.3"
thiserror = "1.0"
regex = "1.6"
image = { version = "0.24", default-features = false, features = ["png", "jpeg", "tga", "tiff", "webp", "bmp"] }
once_cell = "1"
memmap2 = "0.9"
rayon = "1"
# GPU rendering
wgpu = "0.19"
bytemuck = { version = "1.12", features = ["derive"] }
# Synchronization
parking_lot = "0.12"
# Display GUI
egui = "0.26"
egui-wgpu = "0.26"
egui-winit = { version = "0.26", default-features = false }
# winit = "0.29"
egui_dock = "0.11"
# egui_dock = { path = "libs/egui_dock" }
egui-notify = "0.13"
# Async runtime
rfd = { version = "0.13", default-features = false, features = ["xdg-portal"] }
tokio = { version = "1.21", features = ["sync", "rt", "rt-multi-thread", "time"] }
futures = "0.3"
[profile.release]
strip = true
lto = true
panic = "abort"
codegen-units = 1
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[build-dependencies]
cc = "1.0"
[package.metadata.bundle]
name = "Silicate"
identifier = "io.antran.silicate"
icon = ["assets/icon.ico"]
category = "Utility"