forked from kane50613/takumi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 664 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 664 Bytes
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
[workspace]
resolver = "3"
members = [
"takumi",
"takumi-server",
"takumi-napi-core",
"takumi-wasm",
"takumi-cli",
"example/rust",
]
[profile.release]
strip = true
opt-level = "z"
lto = true
panic = "abort"
codegen-units = 1
[profile.release.package."takumi-wasm"]
strip = "debuginfo"
# there's some color artifacts issues with zune-image decoder, we have to use a pinned version on dev branch.
[patch.crates-io.zune-core]
git = "https://github.com/etemesi254/zune-image"
rev = "05a21489ffd6de1e629ce89f51f5cb4d66dd3f0d"
[patch.crates-io.zune-jpeg]
git = "https://github.com/etemesi254/zune-image"
rev = "05a21489ffd6de1e629ce89f51f5cb4d66dd3f0d"