22 lines
501 B
TOML
22 lines
501 B
TOML
[package]
|
|
name = "hcie-blend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hcie-color = { path = "../hcie-color" }
|
|
rand = "0.8"
|
|
rayon = "1.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.23"
|
|
proptest = "1.5"
|
|
approx = "0.5"
|
|
egui = "0.34"
|
|
eframe = { version = "0.34", default-features = false, features = ["default_fonts", "glow"] }
|
|
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
|