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"