Files
hcie-rust-v3.05/hcie-io/Cargo.toml
T

38 lines
1.1 KiB
TOML
Raw Normal View History

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"
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"] }
2026-07-13 20:33:39 +03:00
rayon = "1.10"