-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 818 Bytes
/
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
[workspace]
resolver = "2"
members = [
"fractl_lib",
"fractl_gui",
]
[workspace.package]
version = "0.1.0"
description = " Fractal renderer supporting multithreading, gpu compute and wasm "
edition = "2021"
authors = ["Shapur <48966182+Shapur1234@users.noreply.github.com>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/Shapur1234/Fractaller"
readme = "README.md"
keywords = [ "fractal", "rendering", "gpu", "pararellism", "wasm" ]
categories = [ "rendering", "mathematics", "graphics", "multimedia::images", "web-programming" ]
exclude = [ "screenshot/*" ]
[workspace.dependencies]
fractl_lib = { path = "fractl_lib", version = "0.1", default-features = false }
[profile.release]
codegen-units = 1
lto = true
[profile.flamegraph]
inherits = "release"
lto = false
debug = true
panic = "abort"