-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (62 loc) · 1.7 KB
/
Cargo.toml
File metadata and controls
70 lines (62 loc) · 1.7 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "bevy-dlc"
version = "1.18.21"
edition = "2024"
rust-version = "1.93"
authors = ["Kirk <github.com/captkirk88>"]
description = "DLC (downloadable content) management for Bevy games"
license = "MIT"
readme = "README.md"
repository = "https://github.com/captkirk88/bevy-dlc"
categories = ["game-development"]
keywords = ["bevy", "dlc"]
exclude = ["/tests/**", "/examples/**", "/example_keys/**", "/benches/**", "/assets/**", "/scripts/**", "*.md", "*.png", "/reports/", "Criterion.toml", "bevy_dlc_macro/**"]
[features]
default = []
[dependencies]
bevy = "0.18"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = { version = "0.22" }
thiserror = "2"
rand = "0.10"
aes-gcm = "0.10"
clap = { version = "4.6", features = ["derive"] }
hex = "0.4"
flate2 = "1.1"
tar = "0.4"
dashmap = "6.1"
zeroize = "1.8"
ring = "0.17"
secure-gate = { version = "0.7.0-rc.14", features = ["secure", "rand", "cloneable", "ct-eq"] }
byte-aes = "0.2"
owo-colors = "4.3"
infer = "0.19"
crc32fast = "1.5"
futures-lite = "2.6"
bevy_dlc_macro = { version = "1.0.2" }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "winbase"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
assert_cmd = "2.1"
predicates = "3.1"
serial_test = "3.4"
bevy_common_assets = { version = "0.15.0", features = ["json"] }
bevy_cursor_kit = { version = "0.8.0", features = ["serde"] }
tempfile = "3.26"
criterion = { version = "0.8", features = ["html_reports"] }
[profile.release]
opt-level = 3
strip = "symbols"
lto = "thin"
codegen-units = 1
panic = 'abort'
[profile.release.package."*"]
opt-level = 3
strip = "symbols"
codegen-units = 1
[[bench]]
name = "dlc_bench"
harness = false