From 048e05b9d46bb33b45f8a31b9ec079aae7dd1cf1 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 7 Oct 2021 22:25:14 +0200 Subject: Update dependencies Some slight API changes in rusttype, but apart from that it's only version number bumps. --- src/render.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/render.rs') diff --git a/src/render.rs b/src/render.rs index cb6a4fb..fa8e1df 100644 --- a/src/render.rs +++ b/src/render.rs @@ -6,7 +6,7 @@ use image::{ }; use imageproc::{drawing, rect::Rect}; use num_traits::{Num, NumCast}; -use rusttype::{Font, Scale, SharedBytes}; +use rusttype::{Font, Scale}; use serde::{Deserialize, Serialize}; use std::{error::Error, fmt}; @@ -86,7 +86,7 @@ impl Default for RenderOptions { trait_size: 30, line_color: Rgba([0, 0, 0, 255]), line_height: 4, - font: Font::from_bytes(SharedBytes::ByRef(include_bytes!("LiberationMono.ttf"))) + font: Font::try_from_bytes(include_bytes!("LiberationMono.ttf")) .expect("Invalid font data for default font"), text_color: Rgba([0, 0, 0, 255]), text_size: 20, -- cgit v1.2.3