mirror of
https://github.com/Noratrieb/mandelbrot-rust.git
synced 2026-01-14 15:25:07 +01:00
22 lines
434 B
TOML
22 lines
434 B
TOML
[workspace]
|
|
members = [".", "./gpu"]
|
|
|
|
[package]
|
|
name = "mandelbrot_set"
|
|
version = "0.1.0"
|
|
authors = ["Nilstrieb <nilstrieb@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cust = { version = "0.2.2", features = ["vek"] }
|
|
image = "0.23.14"
|
|
gpu = { path = "./gpu" }
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
|
|
[build-dependencies]
|
|
cuda_builder = "0.2.0"
|