From 85aab20558536e93a1fad3dfa60addc56b20d074 Mon Sep 17 00:00:00 2001 From: Martin Lindhe <martin-commit@ubique.se> Date: Sun, 16 Jul 2017 01:47:15 +0200 Subject: [PATCH] README: update example, link to docs and crate --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8557c0d..1ead155 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # rs-tiled - +[](https://travis-ci.org/mattyhall/rs-tiled) +[](https://crates.io/crates/tiled) Read maps from the [Tiled Map Editor](http://www.mapeditor.org/) into rust for use in video games. It is game engine agnostic and pretty barebones at the moment. Documentation is available [on docs.rs](https://docs.rs/tiled/). @@ -9,7 +10,7 @@ Code contributions are welcome as are bug reports, documentation, suggestions an [There is a package on crates.io](https://crates.io/crates/tiled), to use simply add: ``` -tiled = "0.5.0" +tiled = "0.6.0" ``` to the dependencies section of your Cargo.toml. @@ -20,13 +21,16 @@ to the dependencies section of your Cargo.toml. extern crate serialize; extern crate tiled; -use std::old_io::{File, BufferedReader}; +use std::fs::File; +use std::io::BufReader; +use std::path::Path; + use tiled::parse; fn main() { let file = File::open(&Path::new("assets/tiled_base64_zlib.tmx")).unwrap(); println!("Opened file"); - let reader = BufferedReader::new(file); + let reader = BufReader::new(file); let map = parse(reader).unwrap(); println!("{:?}", map); println!("{:?}", map.get_tileset_by_gid(22)); -- GitLab