2023-01-03 10:33:42 +00:00
|
|
|
[package]
|
|
|
|
name = "un-pak"
|
|
|
|
authors = ["spuds"]
|
|
|
|
repository = "https://github.com/bananaturtlesandwich/un-pak"
|
|
|
|
description = "a no-nonsense unreal pak parsing crate"
|
|
|
|
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-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"
|