-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
51 lines (43 loc) · 985 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "hpk"
version = "0.3.12"
description = "HPK archiver for Haemimont Engine game files (Tropico 3-5, Omerta, Victor Vran, Surviving Mars etc.)"
readme = "README.md"
repository = "https://github.com/nickelc/hpk"
license = "GPL-3.0"
authors = ["Constantin Nickel <[email protected]>"]
keywords = ["archive", "hpk"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.70.0"
include = ["src/**/*", "LICENSE", "README.md"]
[features]
lz4frame = ["lz4"]
[lib]
name = "hpk"
path = "src/hpk/mod.rs"
[[bin]]
name = "hpk"
path = "src/main.rs"
[dependencies]
byteorder = "1"
filetime = "0.2"
flate2 = "1"
glob="0.3"
lz4-compress="0.1"
walkdir="2"
tempfile="3"
zstd = "0.12"
[dependencies.nom]
version = "7.1"
default-features = false
[dependencies.clap]
default-features = false
features = ["std", "cargo", "help", "usage", "error-context"]
version = "4.4"
[dependencies.lz4]
version="1"
optional=true
[profile.release]
lto=true
strip=true