From 55734cc6fbbdb5ae6110a2a749900198222225c1 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Fri, 14 Aug 2020 11:56:17 +0200 Subject: [PATCH] 0.18 and made minifb usage a bit more clear. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf50959..b4a4905 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Crates.io](https://img.shields.io/crates/v/minifb.svg)](https://crates.io/crates/minifb) [![Documentation](https://docs.rs/minifb/badge.svg)](https://docs.rs/minifb) -minifb is a cross platform library written in [Rust](https://www.rust-lang.org) and that makes it easy to setup a window and to (optional) display a 32-bit pixel buffer. It also makes it easy to get input from keyboard and mouse. +minifb is a cross platform library written in [Rust](https://www.rust-lang.org) and that makes it easy to setup a window and to (optional) display a 32-bit pixel buffer. It also makes it easy to get input from keyboard and mouse. Notice that minifb is primary designed for prototyping and may not include all the features found in full window handling libraries. An example is the best way to show how it works: [Changelog](https://github.com/emoon/rust_minifb/blob/master/CHANGELOG.md) @@ -13,7 +13,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.17" +minifb = "0.18" ``` Example