[package] name = "hcie-io" version = "0.1.0" edition = "2021" [dependencies] image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp", "bmp", "gif", "tiff", "ico", "pnm", "qoi", "ff", "hdr", "dds", "avif", "tga", "exr"] } log = "0.4" serde = { version = "1.0", features = ["derive"] } rand = "0.8" resvg = "0.43" usvg = "0.43" tiny-skia = "0.11" bincode = "1.3" hcie-blend = { path = "../hcie-blend" } hcie-protocol = { path = "../hcie-protocol" } hcie-psd = { path = "../hcie-psd", package = "psd" } hcie-composite = { path = "../hcie-composite" } hcie-fx = { path = "../hcie-fx" } hcie-kra = { path = "../hcie-kra" } [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", "x11", "wayland"] } rfd = "0.15" hcie-psd-saver = { path = "../hcie-psd-saver" } zip = { version = "2.2", default-features = false, features = ["deflate"] } rayon = "1.10"