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 }
|
2025-01-13 04:32:49 +00:00
|
|
|
clap = { version = "4.5.26", features = ["derive"] }
|
2023-04-13 07:01:19 +00:00
|
|
|
hex = { workspace = true }
|
2025-01-13 04:32:49 +00:00
|
|
|
indicatif = { version = "0.17.9", features = ["rayon"] }
|
2024-05-31 19:02:53 +00:00
|
|
|
path-clean = "1.0.1"
|
2023-02-23 19:49:39 +00:00
|
|
|
path-slash = "0.2.1"
|
2024-05-31 19:02:53 +00:00
|
|
|
rayon = "1.10.0"
|
|
|
|
sha2 = "0.10.8"
|
2023-02-08 04:21:09 +00:00
|
|
|
strum = { workspace = true }
|
2025-01-13 04:32:49 +00:00
|
|
|
itertools = "0.14.0"
|
|
|
|
glob = "0.3.2"
|
2023-10-06 21:14:08 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-01-13 04:32:49 +00:00
|
|
|
assert_cmd = "2.0.16"
|
2024-04-20 05:01:29 +00:00
|
|
|
dir-diff = "0.3.3"
|
|
|
|
indoc = "2.0.5"
|
2025-01-13 04:32:49 +00:00
|
|
|
tempfile = "3.15.0"
|