-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
52 lines (37 loc) · 1.11 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
[package]
name = "bevy_assets_bundler"
version = "0.6.0"
description = "Assets Bundler for bevy, with content encryption support."
categories = ["cryptography", "encoding", "game-development"]
keywords = ["bevy", "asset", "assets", "bundler"]
readme = "README.md"
repository = "https://github.com/hanabi1224/bevy_assets_bundler"
edition = "2021"
exclude = [".github", ".vscode", "*.yml"]
license = "MIT"
[workspace]
exclude = []
members = ["example"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["encryption"]
encryption = ["aes", "block-modes"]
# compression = ["brotli"]
[workspace.dependencies]
bevy = { version = "0.10", default-features = false }
[dependencies]
bevy = { workspace = true, default-features = false, features = ["bevy_asset"] }
anyhow = "1"
bs58 = "0.4"
cfg-if = "1"
tar = "0.4.38"
tracing = "0.1"
# encryption
aes = { version = "0.7", optional = true }
block-modes = { version = "0.8", optional = true }
# compression
# brotli = {version = "3.3", optional = true}
[dev-dependencies]
futures-lite = "1"
rand = "0"
uuid = "1"