julia-fractal-renderer/Cargo.toml

19 lines
476 B
TOML
Raw Normal View History

2023-07-13 17:21:26 +02:00
[package]
name = "julia-set"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-07-13 21:05:32 +02:00
eframe = "0.22.0"
image = { version = "0.24.6", default-features = false, features = ["png"] }
native-dialog = "0.6.4"
rand = "0.8.5"
serde = { version = "1.0.171", features = ["derive"] }
2023-07-14 01:05:56 +02:00
serde_json = "1.0.102"
2023-07-13 17:21:26 +02:00
# Enable high optimizations for dependencies
[profile.dev.package."*"]
opt-level = 3