2026-07-09 02:59:53 +03:00
|
|
|
[package]
|
|
|
|
|
name = "hcie-io"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-07-13 20:33:39 +03:00
|
|
|
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp", "bmp", "gif", "tiff", "ico", "pnm", "qoi", "ff", "hdr", "dds", "avif", "tga", "exr"] }
|
2026-07-09 02:59:53 +03:00
|
|
|
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"
|
2026-07-23 16:34:05 +03:00
|
|
|
egui = { workspace = true }
|
|
|
|
|
eframe = { workspace = true }
|
2026-07-09 02:59:53 +03:00
|
|
|
rfd = "0.15"
|
|
|
|
|
hcie-psd-saver = { path = "../hcie-psd-saver" }
|
|
|
|
|
zip = { version = "2.2", default-features = false, features = ["deflate"] }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-07-13 20:33:39 +03:00
|
|
|
rayon = "1.10"
|