32 lines
571 B
TOML
32 lines
571 B
TOML
[package]
|
|
name = "refraction"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.dev]
|
|
panic = 'abort'
|
|
|
|
[profile.test]
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5.1"
|
|
rand = "0.8.5"
|
|
rand_pcg = "0.3.1"
|