mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 15:22:53 -05:00
Reduced dependencies
This commit is contained in:
parent
c58b9c92d1
commit
534fd7b0b9
2 changed files with 3 additions and 5 deletions
|
@ -3,12 +3,11 @@ name = "cz"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description="""
|
description="""
|
||||||
A encoder/decoder for CZ# image files used in
|
A encoder/decoder for CZ# image files used in the LUCA System Engine.
|
||||||
[RealLive Engine](https://www.pcgamingwiki.com/wiki/Engine:RealLive).
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
byteorder = "1.5.0"
|
byteorder = "1.5.0"
|
||||||
thiserror = "1.0.59"
|
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"
|
quantizr = "1.4.2"
|
||||||
|
|
|
@ -9,6 +9,5 @@ edition = "2021"
|
||||||
byteorder = "1.5.0"
|
byteorder = "1.5.0"
|
||||||
clap = { version = "4.5.4", features = ["derive", "unicode"] }
|
clap = { version = "4.5.4", features = ["derive", "unicode"] }
|
||||||
cz = { path = "../cz" }
|
cz = { path = "../cz" }
|
||||||
fontdue = { version = "0.8.0", features = ["parallel"] }
|
image = { version = "0.25.1", default-features = false, features = ["png"] }
|
||||||
image = "0.25.1"
|
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
|
|
Loading…
Reference in a new issue