repak/Cargo.toml

37 lines
971 B
TOML
Raw Normal View History

2023-02-01 23:44:57 +00:00
[workspace]
2023-08-17 20:17:36 +00:00
resolver = "2"
2023-02-01 23:44:57 +00:00
members = ["repak", "repak_cli"]
[workspace.package]
repository = "https://github.com/trumank/repak"
authors = ["spuds", "trumank"]
2023-01-14 15:35:50 +00:00
license = "MIT OR Apache-2.0"
2024-01-12 02:25:50 +00:00
version = "0.2.1"
2023-01-03 10:33:42 +00:00
edition = "2021"
2024-04-12 16:35:01 +00:00
keywords = ["unreal-engine", "pak", "unrealpak"]
2023-01-03 10:33:42 +00:00
2023-02-01 23:44:57 +00:00
[workspace.dependencies]
aes = "0.8.2"
base64 = "0.21.0"
strum = { version = "0.24", features = ["derive"] }
2023-09-20 07:02:16 +00:00
sha1 = "0.10"
2023-09-20 19:21:15 +00:00
hex = "0.4"
2023-02-01 23:44:57 +00:00
2024-01-11 23:42:08 +00:00
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.7.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# The profile that 'cargo dist' will build with
2023-02-01 23:44:57 +00:00
[profile.dist]
inherits = "release"
2024-01-11 23:42:08 +00:00
lto = "thin"