repak/repak_cli/Cargo.toml

43 lines
977 B
TOML
Raw Normal View History

2023-02-01 23:44:57 +00:00
[package]
name = "repak_cli"
2024-01-11 23:41:19 +00:00
description = "Utility for building/extracting/inspecting Unreal Engine .pak files"
2023-02-01 23:44:57 +00:00
repository.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true
2024-01-11 23:41:19 +00:00
[package.metadata.wix]
upgrade-guid = "723E95D8-E87B-46BC-AD3B-C128583967CF"
path-guid = "F58A5112-1B44-49DA-8772-4E68F01E4AB7"
license = false
eula = false
2023-02-01 23:44:57 +00:00
[[bin]]
name = "repak"
path = "src/main.rs"
2024-02-24 21:12:15 +00:00
[features]
default = ["oodle"]
oodle = ["repak/oodle_implicit_dynamic"]
2023-02-01 23:44:57 +00:00
[dependencies]
2024-02-24 21:12:15 +00:00
repak = { path = "../repak" }
2023-02-01 23:44:57 +00:00
aes = { workspace = true }
base64 = { workspace = true }
clap = { version = "4.1.4", features = ["derive"] }
2023-04-13 07:01:19 +00:00
hex = { workspace = true }
2023-02-23 22:49:35 +00:00
indicatif = { version = "0.17.3", features = ["rayon"] }
2023-02-01 23:44:57 +00:00
path-clean = "0.1.0"
path-slash = "0.2.1"
rayon = "1.6.1"
sha2 = "0.10.7"
strum = { workspace = true }
2024-01-06 23:43:50 +00:00
itertools = "0.12.0"
2023-10-06 21:14:08 +00:00
[dev-dependencies]
assert_cmd = "2.0.12"
2024-04-20 05:01:29 +00:00
dir-diff = "0.3.3"
indoc = "2.0.5"
tempfile = "3.10.1"