rpfixer/Cargo.toml

24 lines
497 B
TOML
Raw Normal View History

2024-12-03 20:47:10 +00:00
[package]
2024-12-08 22:13:19 +00:00
name = "rpfixer"
2024-12-08 22:19:18 +00:00
description = "A tool to fix Minecraft: Java Edition resource pack image protection"
license = "MIT"
authors = ["endernon"]
2024-12-08 22:20:15 +00:00
repository = "https://git.frfrnocap.men/endernon/rpfixer"
2024-12-08 22:22:55 +00:00
readme = "readme.md"
2024-12-15 17:20:55 +00:00
version = "0.4.2"
2024-12-03 20:47:10 +00:00
edition = "2021"
[dependencies]
2024-12-03 23:10:22 +00:00
clap = { version = "4.5.22", features = ["derive"] }
glob = "0.3.1"
2024-12-06 22:58:45 +00:00
adler = "1.0.2"
crc32fast = "1.4.2"
miniz_oxide = "0.8.0"
[lib]
name = "rpfixer"
path = "src/lib.rs"
[[bin]]
name = "rpfixer"
path = "src/main.rs"