From dbbeaebd724eb6d6e6f9b849adcb72db8c40a708 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Mon, 4 Jan 2016 22:40:38 +0100 Subject: [PATCH] Added crates.io banner and documentation link --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f87eb9c..34dce87 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,16 @@ -rust_minifb -====== +[![Crates.io](https://img.shields.io/crates/v/minifb.svg)](https://crates.io/crates/minifb) rust_minifb (Mini FrameBuffer) is a small cross platform library written in [Rust](https://www.rust-lang.org) and that makes it easy to render (32-bit) pixels in a window. An example is the best way to show how it works: +[Documentation](http://prodbg.com/minifb/minifb/index.html) + Usage ----- ```toml # Cargo.toml [dependencies] -minifb = "0.2.2" +minifb = "0.2.3" ``` Example