-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 919 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (32 loc) · 919 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
30
31
32
33
34
35
36
37
[workspace]
members = [
"crates/opendefocus",
"crates/opendefocus-shared",
"crates/opendefocus-kernel",
"crates/opendefocus-datastructure",
"crates/opendefocus-nuke",
"xtask",
"examples/simple",
]
exclude = ["crates/spirv-cli-build"]
resolver = "2"
[workspace.lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = [
'cfg(target_arch, values("spirv"))',
] }
[workspace.package]
version = "0.1.10"
authors = ["Gilles Vink <gillesvink@noreply.codeberg.org>"]
edition = "2024"
license = "EUPL-1.2"
repository = "https://codeberg.org/gillesvink/opendefocus"
homepage = "https://opendefocus.codeberg.page"
documentation = "https://docs.rs/opendefocus/"
keywords = ["defocus", "convolution", "image-processing"]
categories = ["multimedia", "graphics"]
readme = "README.md"
[profile.release.build-override]
opt-level = 3
codegen-units = 16
[profile.dev.build-override]
opt-level = 3