repak/Cargo.toml

27 lines
640 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-03 10:33:42 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byteorder = "*"
strum = { version = "*", features = ["derive"] }
2023-01-13 12:12:39 +00:00
aes = "*"
2023-01-13 18:12:47 +00:00
flate2 = "*"
2023-01-10 22:29:20 +00:00
hashbrown = "*"
2023-01-03 10:33:42 +00:00
thiserror = "*"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"