-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (40 loc) · 1.12 KB
/
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
[package]
name = "wt_ext_cli"
version = "0.5.16"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/Warthunder-Open-Source-Foundation/wt_ext_cli"
authors = ["flareflo"]
description = "Extracts WT game files such as VROMFS and BLK"
[profile.dev]
opt-level = 2
[profile.release]
opt-level = 3
lto = true
codegen-units = 2
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
debug = false
strip = true
# The profile CI will run with
[profile.ci]
inherits = "dev"
opt-level = 2
[features]
default = []
[dependencies]
clap = { version = "4.4", features = ["cargo"] }
wt_blk = { git = "https://github.com/Warthunder-Open-Source-Foundation/wt_blk", branch = "master" }
#wt_blk = {path = "../wt_blk"}
thiserror = "2.0"
rayon = "1.8"
open = "5.3"
color-eyre = { version = "^0.6", default-features = false }
serde_json = "^1.0"
serde = { version = "^1.0", features = ["serde_derive"] }
const_format = { version = "0.2", default-features = false, features = ["fmt"] }
zip = { version = "^2.2", features = ["deflate"], default-features = false }
atty = "0.2"
env_logger = "0.11.5"
log = "0.4.22"