forked from alpine-alpaca/asefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 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
44
45
46
[package]
name = "asefile"
version = "0.3.7"
authors = ["alpine-alpaca <[email protected]>"]
edition = "2018"
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/*"
]
rust-version = "1.51"
[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 = "1.2"
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"] }