-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
56 lines (49 loc) · 1.36 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
49
50
51
52
53
54
55
56
[package]
name = "destiny-pkg"
version = "0.14.0"
edition = "2021"
authors = ["cohaereo <[email protected]>", "nblock <[email protected]>"]
description = "Destiny 1/2 Tiger package library and tools (unpacker, verification)"
homepage = "https://github.com/v4nguard/destiny-pkg"
repository = "https://github.com/v4nguard/destiny-pkg"
license = "MIT"
readme = "README.md"
categories = ["data-structures", "compression", "encoding"]
keywords = ["destiny", "pkg", "package", "bungie", "tiger"]
include = ["**/*.rs", "Cargo.toml"]
[dependencies]
aes = "0.8"
aes-gcm = "0.10"
anyhow = "1"
bincode = { version = "2.0.0-rc.3" }
binrw = "0.13"
clap = { version = "4.5.4", features = ["derive"] }
clap-num = "1.0.2"
hex = "0.4.3"
itertools = "0.13"
lazy_static = "1.4.0"
libloading = "0.8.0"
parking_lot = "0.12.1"
rayon = "1.7.0"
rustc-hash = "1.1.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.108"
tracing = { version = "0.1.37", features = ["log"] }
[features]
ignore_package_cache = []
[dev-dependencies]
env_logger = "0.10.0"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-tracy = "0.10.4"
tracy-client = "0.16.4"
[package.metadata.appimage]
auto_link = true
assets = ["liblinoodle.so"]
[profile.release]
opt-level = 3
strip = "symbols"
lto = "fat"
[profile.dev.package.aes]
opt-level = 3
[profile.dev.package.aes-gcm]
opt-level = 3