Skip to content

Commit

Permalink
Some Cargo.toml updates (#139)
Browse files Browse the repository at this point in the history
* Added "game-development" to "categories"
* Added "gamedev" to "keywords"
* Updated repository URL
* Updated dependencies
* Removed broken "documentation" URL
  • Loading branch information
bjorn authored Feb 3, 2022
1 parent 75e0869 commit 2a92b1a
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

name = "tiled"
version = "0.9.5"
description = "A rust crate for loading in maps created by the Tiled editor"
repository = "https://github.com/mattyhall/rs-tiled.git"
# documentation = "http://rust-ci.org/mattyhall/rs-tiled/doc/tiled/"
description = "A rust crate for loading maps created by the Tiled editor"
categories = ["game-development"]
keywords = ["gamedev", "tiled", "tmx", "map"]
repository = "https://github.com/mapeditor/rs-tiled"
readme = "README.md"
license = "MIT"
authors = ["Matthew Hall <[email protected]>"]
edition = "2018"

keywords = ["tiled", "tmx", "map"]

[features]
default = ["zstd"]

Expand All @@ -24,7 +23,7 @@ name = "example"
path = "examples/main.rs"

[dependencies]
base64 = "0.10"
xml-rs = "0.8"
libflate = "0.1.18"
zstd = { version = "0.9", optional = true }
base64 = "0.13.0"
xml-rs = "0.8.4"
libflate = "1.1.2"
zstd = { version = "0.10.0", optional = true }

0 comments on commit 2a92b1a

Please sign in to comment.