2023-01-03 10:33:42 +00:00
|
|
|
[package]
|
2023-01-14 15:35:50 +00:00
|
|
|
name = "unpak"
|
2023-01-03 10:33:42 +00:00
|
|
|
authors = ["spuds"]
|
2023-01-14 15:35:50 +00:00
|
|
|
repository = "https://github.com/bananaturtlesandwich/unpak"
|
2023-01-03 10:33:42 +00:00
|
|
|
description = "a no-nonsense unreal pak parsing crate"
|
2023-01-14 15:35:50 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = ["modding", "parsing", "compression"]
|
|
|
|
categories = ["filesystem", "parser-implementations"]
|
2023-01-14 18:32:06 +00:00
|
|
|
version = "0.2.0"
|
2023-01-03 10:33:42 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-14 15:42:44 +00:00
|
|
|
byteorder = "1.4"
|
|
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
|
|
aes = "0.8"
|
|
|
|
flate2 = "1.0"
|
|
|
|
hashbrown = "0.13"
|
|
|
|
thiserror = "1.0"
|
2023-01-17 05:27:36 +00:00
|
|
|
base64 = "0.21.0"
|