-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.38 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
[package]
name = "pak"
version = "0.7.1"
authors = ["John Wells <john@attackgoat.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/attackgoat/pak"
homepage = "https://github.com/attackgoat/pak"
documentation = "https://docs.rs/pak"
keywords = ["gamedev"]
categories = ["game-development"]
description = "An easy-to-use data pak format for games."
[features]
default = []
bake = ["bmfont", "glob", "image", "parking_lot", "tokio"]
[dependencies]
anyhow = "1.0"
bincode = { version = "=2.0", features = ["serde"] }
bitflags = { version = "2.10", features = ["serde"] }
bmfont = { version = "0.3", default-features = false, optional = true }
brotli = "8.0"
dunce = "1.0"
glam = "0.31"
glob = { version = "0.3", optional = true }
gltf = { version = "1.4", features = ["names"] }
image = { version = "0.25", optional = true }
log = "0.4"
meshopt = "0.6"
mikktspace = { version = "0.16", package = "bevy_mikktspace" }
parking_lot = { version = "0.12", optional = true }
ordered-float = { version = "5.1", features = ["serde"] }
paste = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
snap = "1.1"
tokio = { version = "1.49", default-features = false, features = [
"rt-multi-thread",
], optional = true }
toml = "0.9"
[dev-dependencies]
pretty_env_logger = "0.5"
[[example]]
name = "bake_pak"
required-features = ["bake"]