-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 905 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
32
33
34
35
36
[package]
name = "fractal-explorer"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/lobis/fractal-explorer"
authors = ["Luis Antonio Obis Aparicio <[email protected]>"]
description = "A simple Julia Set explorer built using Rust"
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "fractal-explorer-app"
path = "src/main.rs"
[dependencies]
cfg-if = "1"
winit = "0.28"
env_logger = "0.10"
log = "0.4"
wgpu = "0.18"
pollster = "0.3"
bytemuck = { version = "1.14", features = ["derive"] }
instant = "0.1"
[dependencies.image]
version = "0.24"
default-features = false
features = ["png"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
wgpu = { version = "0.18", features = ["webgl"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = ["Document", "Window", "Element"] }