-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1.01 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
[package]
name = "bevy_asset_packer"
authors = ["Dublikunt Max"]
version = "0.4.0"
edition = "2021"
license = "BSD-3-Clause"
description = "Easy to use bevy plugin for packing resources in single file and protect him."
homepage = "https://github.com/DublikuntMux/bevy_asset_packer"
repository = "https://github.com/DublikuntMux/bevy_asset_packer"
readme = "README.md"
keywords = ["bevy", "asset", "assets", "asset_manager", "bevy_plugin"]
categories = ["game-development", "game-engines"]
exclude = [
"example/*",
".github/*",
"rustfmt.toml"
]
[workspace]
resolver = "2"
members = ["example"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[workspace.dependencies]
bevy = { version = "0.11", default-features = false }
[dependencies]
bevy = { version = "0.11", default-features = false, features = ["bevy_asset"] }
anyhow = "1.0.75"
bs58 = "0.5.0"
tar = "0.4.40"
miniz_oxide = { version = "0.7.1", features = ["std", "simd"] }
belt-ctr = { version = "0.1.0", features = ["std"] }
aes = "0.8.3"