Files
Your Name 6b02f19624
mandatory-regression-gate / deterministic-tests (push) Has been cancelled
mandatory-regression-gate / protected-performance-path (push) Has been cancelled
feat: add performance benchmarks for composite buffer pooling and effects pipeline skipping
2026-07-24 17:29:33 +03:00

60 lines
1.6 KiB
TOML

[package]
name = "hcie-engine-api"
version = "0.1.0"
edition = "2021"
[dependencies]
hcie-protocol = { path = "../hcie-protocol" }
hcie-document = { path = "../hcie-document" }
hcie-tile = { path = "../hcie-tile" }
hcie-selection = { path = "../hcie-selection" }
hcie-text = { path = "../hcie-text" }
hcie-history = { path = "../hcie-history" }
hcie-fx = { path = "../hcie-fx" }
hcie-blend = { path = "../hcie-blend" }
hcie-brush-engine = { path = "../hcie-brush-engine" }
hcie-draw = { path = "../hcie-draw" }
hcie-filter = { path = "../hcie-filter" }
hcie-composite = { path = "../hcie-composite" }
hcie-io = { path = "../hcie-io" }
hcie-psd = { path = "../hcie-psd", package = "psd" }
hcie-kra = { path = "../hcie-kra" }
hcie-native = { path = "../hcie-native" }
hcie-vector = { path = "../hcie-vector" }
libloading = "0.8"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp", "bmp", "gif", "tiff"] }
rayon = "1.10"
log = "0.4"
dirs = { workspace = true }
usvg = { workspace = true }
[lib]
crate-type = ["rlib", "staticlib"]
[dev-dependencies]
rstest = "0.23"
proptest = "1.5"
approx = "0.5"
sha2 = "0.10"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "stroke_mask_pooling"
harness = false
[[bench]]
name = "composite_scratch_pooling"
harness = false
[[bench]]
name = "below_cache_reuse"
harness = false
[[bench]]
name = "effects_skip"
harness = false