Releases: tomassedovic/tcod-rs
Releases · tomassedovic/tcod-rs
0.4.3
- Updated to a newer version of Rust:
bitflags!
moved from Rust to its own crate - Added example showing off the mouse interface
- Moved mouse-specific functions to a separate module
0.4.2
Update to a newer version of Rust
- Uses better closure syntax
0.4.1
Updated tcod-sys
to a newer version of Rust using rust-bindgen
0.4.0
- Added mouse support (
mouse_show_cursor()
,mouse_is_cursor_visible()
,mouse_move()
andsys_check_for_event()
) - Converted from using
isize
toi32
to conform with Rust best practices
0.3.3
Upgrade to a new version of Rust
- Convert all
int
anduint
values to the newisize
andusize
types - Use
Box::new(value)
instead ofbox value
0.3.2
Upgrade to a new version of Rust
- Converts c_string conversions to use the new
CString::from_slice
method - Removes feature gates which became redundant
0.3.1
Initial crates.io release