36 lines
692 B
TOML
36 lines
692 B
TOML
[package]
|
|
name = "refraction"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lints.rust]
|
|
mixed_script_confusables = "allow"
|
|
|
|
[profile.dev]
|
|
panic = 'abort'
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.test.package."*"]
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
rand = "0.8.5"
|
|
glam = { version = "0.27.0", features = ["approx", "fast-math", "rand"] }
|
|
show-image = "0.14.0"
|
|
flo_draw = "0.3.1"
|
|
flo_canvas = "0.3.1"
|
|
itertools-num = "0.1.3"
|
|
winit = "0.29"
|
|
itertools = "0.13.0"
|
|
wgpu = "22.1.0"
|
|
bytemuck = { version = "1.18.0", features = ["derive"] }
|
|
pollster = "0.3.0"
|
|
image = {version = "0.23", default-features = false, features = ["png"] }
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5.1"
|
|
rand = "0.8.5"
|
|
rand_pcg = "0.3.1"
|