forked from PistonDevelopers/texture_packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 788 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
[package]
name = "texture_packer"
version = "0.27.0"
authors = ["Coeuvre <[email protected]>"]
edition = "2018"
keywords = ["texture", "packer", "piston"]
description = "A texture packing library using the skyline heuristic"
license = "MIT"
readme = "README.md"
repository = "https://github.com/PistonDevelopers/texture_packer.git"
homepage = "https://github.com/PistonDevelopers/texture_packer"
documentation = "http://docs.piston.rs/texture_packer"
[features]
common = ["gif", "jpeg", "png", "tga", "bmp"]
gif = ["image/gif"]
ico = ["image/ico"]
jpeg = ["image/jpeg"]
png = ["image/png"]
pnm = ["image/pnm"]
tga = ["image/tga"]
tiff = ["image/tiff"]
webp = ["image/webp"]
bmp = ["image/bmp"]
hdr = ["image/hdr"]
[dependencies]
image = { version = "0.24.1", default-features = false }