diff --git a/CHANGELOG.md b/CHANGELOG.md index 746f6d658cffd4bf5930cb21a9c2475b82801625..98b84084832e7b57e6707724e9a786c6a68a3df2 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 aa63910ab6c498012138032237dc85397ff56424..fe0d5d2230330fc5020adfb57a1164f4d55041eb 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 2d1cc54d994f692720ba24238f3ae127a7f88d2e..a473a92c05f1b8540f4692b40d83f731509e8a0f 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.