From 24c8ce8b37e1e2ca387755299fa211d84be5021c Mon Sep 17 00:00:00 2001 From: Ty Overby Date: Wed, 12 Aug 2015 20:16:30 -0700 Subject: [PATCH] update example in readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0e18541..ffc1658 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,12 @@ library. [Api Documentation](http://tyoverby.github.io/bincode/bincode/) ## Example - ```rust extern crate bincode; -extern crate "rustc-serialize" as rustc_serialize; +extern crate rustc_serialize; use bincode::SizeLimit; +use bincode::rustc_serialize::{encode, decode}; #[derive(RustcEncodable, RustcDecodable, PartialEq)] struct Entity { @@ -42,12 +42,12 @@ fn main() { entities: vec![Entity {x: 0.0, y: 4.0}, Entity {x: 10.0, y: 20.5}] }; - let encoded: Vec = bincode::encode(&world, SizeLimit::Infinite).unwrap(); + let encoded: Vec = encode(&world, SizeLimit::Infinite).unwrap(); // 8 bytes for the length of the vector, 4 bytes per float. assert_eq!(encoded.len(), 8 + 4 * 4); - let decoded: World = bincode::decode(&encoded[..]).unwrap(); + let decoded: World = decode(&encoded[..]).unwrap(); assert!(world == decoded); }