26 lines
652 B
TOML
26 lines
652 B
TOML
|
|
[package]
|
||
|
|
name = "hcie-filter"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
hcie-blend = { path = "../hcie-blend" }
|
||
|
|
hcie-color = { path = "../hcie-color" }
|
||
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
||
|
|
rayon = "1.10"
|
||
|
|
rand = "0.8"
|
||
|
|
serde_json = "1.0"
|
||
|
|
log = "0.4"
|
||
|
|
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
|
||
|
|
fastnoise-lite = "1.1"
|
||
|
|
|
||
|
|
[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"] }
|