Reduced dependencies

This commit is contained in:
G2-Games 2024-05-24 07:47:07 -05:00
parent c58b9c92d1
commit 534fd7b0b9
2 changed files with 3 additions and 5 deletions

View file

@ -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"

View file

@ -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"