-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (24 loc) · 935 Bytes
/
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
[package]
name = "ggez-assets_manager"
version = "0.7.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "`assets_manager` integration for `ggez`"
repository = "https://github.com/a1phyr/ggez-assets_manager"
documentation = "https://docs.rs/ggez-assets_manager"
categories = ["caching", "filesystem", "game-development"]
keywords = ["assets", "cache", "ggez", "hot-reloading", "resources"]
[features]
default = ["ahash"]
ahash = ["assets_manager/ahash"]
hot-reloading = ["assets_manager/hot-reloading"]
[dependencies]
assets_manager = { version = "0.12", default-features = false, features = ["utils", "parking_lot", "zip"] }
ggez = { version = "0.9.0", default-features = false, features = ["audio"] }
directories = "5.0"
image = { version = "0.24", default-features = false, features = ["png", "bmp", "webp", "jpeg"] }
log = "0.4"
parking_lot = "0.12"
[dev-dependencies]
env_logger = "0.11"