From 9c7082b922520605ddf5e6765f7d09e09d7e854c Mon Sep 17 00:00:00 2001 From: Alejandro Perea <alexpro820@gmail.com> Date: Mon, 18 Apr 2022 11:50:06 +0200 Subject: [PATCH] Update zstd, add deps badge (#213) --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- README.md | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 746f6d6..98b8408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `TileLayer::width` & `TileLayer::height` for ergonomic access of width/height. - `FiniteTileLayerData::get_tile_data`, `InfiniteTileLayerData::get_tile_data`. +### Changed +- Update `zstd` to `0.11.0`. + ## [0.10.1] ### Added - `Loader` type for loading map and tileset files without having to necessarily mention the cache diff --git a/Cargo.toml b/Cargo.toml index aa63910..fe0d5d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ path = "examples/sfml/main.rs" base64 = "0.13.0" xml-rs = "0.8.4" libflate = "1.1.2" -zstd = { version = "0.10.0", optional = true } +zstd = { version = "0.11.0", optional = true } [dev-dependencies.sfml] version = "0.16" diff --git a/README.md b/README.md index 2d1cc54..a473a92 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ tiled = "0.10.1" [](https://github.com/mapeditor/rs-tiled/actions/workflows/rust.yml) [](https://crates.io/crates/tiled) +[](https://deps.rs/crate/tiled/0.10.1) A crate for reading TMX (map) and TSX (tileset) files from the [Tiled Map Editor](http://www.mapeditor.org/) into Rust. It provides a huge set of features as well as a strong wrapper over internal features such as GIDs. -- GitLab