-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(project): migrate to 2021 edition and fix some clippy issues
- Loading branch information
Showing
2 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
name = "aseprite" | ||
description = "A crate to load files from the aseprite sprite editor." | ||
version = "0.1.3" | ||
edition = "2021" | ||
authors = ["Simon Heath <[email protected]>"] | ||
repository = "https://github.com/ggez/aseprite" | ||
documentation = "https://docs.rs/aseprite" | ||
|
@@ -11,8 +12,7 @@ readme = "README.md" | |
categories = ["games", "rendering::data-formats", "multimedia::images"] | ||
|
||
[dependencies] | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters