forked from alpine-alpaca/asefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.05 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 = "asefile"
version = "0.3.7"
authors = ["alpine-alpaca <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Utilities for loading Aseprite files."
homepage = "https://github.com/alpine-alpaca/asefile"
repository = "https://github.com/alpine-alpaca/asefile"
readme = "README.md"
keywords = ["gamedev", "aseprite", "pixel", "2D"]
categories = [
"game-development",
"multimedia::images",
"rendering::data-formats",
]
include = ["Cargo.toml", "README.md", "CHANGELOG.md", "LICENSE", "src/*"]
[package.metadata.docs.rs]
all-features = true
# Config for `cargo-release`, see
# https://github.com/crate-ci/cargo-release/blob/master/docs/reference.md
[package.metadata.release]
[features]
default = []
# Enable the util module
utils = []
[dependencies]
byteorder = "1.3"
log = "0.4"
flate2 = "1.0"
bitflags = "2.4"
nohash = "0.2"
image = { version = "0.24", default-features = false }
[dev-dependencies]
rand = ">=0.7, <0.9"
rect_packer = "0.2"
image = { version = "0.24", default-features = false, features = ["png"] }