-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.08 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
[package]
name = "bevy-histrion-packer"
authors = ["Ludwig DUBOS <[email protected]>"]
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["bevy", "assets", "packer", "bundler", "zlib"]
categories = [
"game-development",
"compression",
"encoding",
"parser-implementations",
]
repository = "https://github.com/ldubos/bevy-histrion-packer"
documentation = "https://docs.rs/bevy-histrion-packer"
description = "A Bevy Plugin to pack all your game assets into a single common PAK like file format."
[features]
default = ["deflate", "writer"]
deflate = ["dep:zopfli", "dep:flate2", "dep:parking_lot"]
writer = []
[dependencies]
flate2 = { version = "1.0", optional = true }
futures-io = "0.3"
futures-lite = "2.0"
memmap2 = "0.9.5"
parking_lot = { version = "0.12", optional = true }
thiserror = "2.0"
zopfli = { version = "0.8", default-features = false, features = [
"std",
"zlib",
], optional = true }
[dependencies.bevy]
version = "0.15"
default-features = false
features = ["bevy_asset"]
[dev-dependencies]
rstest = "0.23"
futures = "0.3"