From 2a92b1a323d1a1153a1692c74e59e191fa01a05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <bjorn@lindeijer.nl> Date: Thu, 3 Feb 2022 11:44:45 +0100 Subject: [PATCH] Some Cargo.toml updates (#139) * Added "game-development" to "categories" * Added "gamedev" to "keywords" * Updated repository URL * Updated dependencies * Removed broken "documentation" URL --- Cargo.toml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b3d16a6..a9c176d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 <matthew@quickbeam.me.uk>"] edition = "2018" -keywords = ["tiled", "tmx", "map"] - [features] default = ["zstd"] @@ -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 } -- GitLab