From 8429d13db04307a62da8cf8425a296c2e49ebdc0 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Wed, 3 Jun 2026 00:09:10 +0200 Subject: [PATCH] fix: enable ab_glyph font backend for plotters --- crates/adapters/wrapup-renderer/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/adapters/wrapup-renderer/Cargo.toml b/crates/adapters/wrapup-renderer/Cargo.toml index 23a8e3f..f746119 100644 --- a/crates/adapters/wrapup-renderer/Cargo.toml +++ b/crates/adapters/wrapup-renderer/Cargo.toml @@ -10,6 +10,6 @@ tracing = { workspace = true } image = "0.25" imageproc = "0.25" ab_glyph = "0.2" -plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder"] } +plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder", "ab_glyph"] } tokio = { workspace = true, features = ["process"] } tempfile = "3"