Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ categories = ["games", "rendering::data-formats", "multimedia::images"]
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"

[dev-dependencies]
aseprite-test-data = "0.1.0"
png = "0.16.7"
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

A crate for loading data from the [aseprite](https://www.aseprite.org/) sprite editor. Should go along well with the [tiled](https://github.com/mattyhall/rs-tiled) crate, I hope!

It does not load any actual images, just the metadata. Currently it only loads aseprite's JSON export format, and only when
exported in the "json-array" format (which isn't the default for some reason but appears much more sensible than the alternative).
It does not load any actual images, just the metadata. Currently it only loads aseprite's JSON export format.

Automatically exporting a sprite to a given format is documented here: <https://www.aseprite.org/docs/cli/>

# Docs

Documentation is on [docs.rs](https://docs.rs/aseprite/0.1.3/aseprite/)
Documentation for the latest version is on [docs.rs](https://docs.rs/aseprite/)

# Example

Expand Down
Loading