From 534fd7b0b930a3fb4f6d1d7e5a88f0244d15d04e Mon Sep 17 00:00:00 2001 From: G2-Games Date: Fri, 24 May 2024 07:47:07 -0500 Subject: [PATCH] Reduced dependencies --- cz/Cargo.toml | 5 ++--- utils/Cargo.toml | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/cz/Cargo.toml b/cz/Cargo.toml index e7aaa11..e011fde 100644 --- a/cz/Cargo.toml +++ b/cz/Cargo.toml @@ -3,12 +3,11 @@ name = "cz" version = "0.1.0" edition = "2021" description=""" -A encoder/decoder for CZ# image files used in -[RealLive Engine](https://www.pcgamingwiki.com/wiki/Engine:RealLive). +A encoder/decoder for CZ# image files used in the LUCA System Engine. """ [dependencies] byteorder = "1.5.0" thiserror = "1.0.59" -image = {version = "0.25.1", default-features = false} +image = { version = "0.25.1", default-features = false, features = ["png"] } quantizr = "1.4.2" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 085ad93..40e17b9 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -9,6 +9,5 @@ edition = "2021" byteorder = "1.5.0" clap = { version = "4.5.4", features = ["derive", "unicode"] } cz = { path = "../cz" } -fontdue = { version = "0.8.0", features = ["parallel"] } -image = "0.25.1" +image = { version = "0.25.1", default-features = false, features = ["png"] } walkdir = "2.5.0"