repak/Cargo.toml

19 lines
476 B
TOML
Raw Normal View History

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"
[dependencies]
2023-01-14 15:42:44 +00:00
byteorder = "1.4"
strum = { version = "0.24", features = ["derive"] }
aes = "0.8"
flate2 = "1.0"
thiserror = "1.0"
2023-01-22 04:40:53 +00:00
sha1 = "0.10.5"