Added rust-encoding as a dependency, in prep for text encoding support.

This commit is contained in:
Nathan Vegdahl 2015-02-08 00:19:37 -08:00
parent ed888939bf
commit 9b24b2b4f2
2 changed files with 3 additions and 1 deletions

View File

@ -21,4 +21,5 @@ git = "https://github.com/gchp/rustbox.git"
git = "https://github.com/PistonDevelopers/freetype-rs.git" git = "https://github.com/PistonDevelopers/freetype-rs.git"
[dependencies] [dependencies]
rustc-serialize = "*" rustc-serialize = "*"
encoding = "*"

View File

@ -7,6 +7,7 @@
extern crate rustbox; extern crate rustbox;
extern crate docopt; extern crate docopt;
extern crate "rustc-serialize" as rustc_serialize; extern crate "rustc-serialize" as rustc_serialize;
extern crate encoding;
//extern crate freetype; //extern crate freetype;
//extern crate sdl2; //extern crate sdl2;