This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
0.11.0
tcod
provides Rust bindings to libtcod -- a library for writing roguelikes.
Breaking change
- Renamed the
serde
feature toserialize
. This was necessary because we needed two crates under the serde feature --serde
andserde_derive
. But because a Cargo feature cannot have the same name as an existing dependency, we could not create a "serde" feature that would pull in both dependencies. Hence the rename.
Deprecation notice
- The
rustc-serialize
feature is now deprecated and will be removed from the next release. To update, change your code to using the newserialization
feature which uses Serde in the background
Other changes
- Added Console::get_default_background
- Fixed the width and height asserts in Console::rect
- Added Map::clear
- Fixed compilation issue with MSVC
- Updated to the latest Serve versions