From 9644a1aa03cbcedb784ff2f12809134a3e37359f Mon Sep 17 00:00:00 2001 From: Nathan Vegdahl Date: Mon, 6 Jul 2015 18:14:12 -0700 Subject: [PATCH] Updated dependencies for stable rust. Warning: doesn't compile. Haven't updated own code for stable yet. --- Cargo.toml | 8 ++------ src/main.rs | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d127bd3..28f285b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,12 +11,6 @@ path = "src/main.rs" [dependencies.ropey] git = "https://github.com/cessen/ropey.git" -[dependencies.docopt] -git = "https://github.com/docopt/docopt.rs.git" - -[dependencies.rustbox] -git = "https://github.com/gchp/rustbox.git" - #[dependencies.sdl2] #git = "https://github.com/AngryLawyer/rust-sdl2.git" @@ -25,4 +19,6 @@ git = "https://github.com/gchp/rustbox.git" [dependencies] rustc-serialize = "0.3.0" +docopt = "0.6.*" encoding = "*" +rustbox = "0.6.3" diff --git a/src/main.rs b/src/main.rs index b334df5..8ee62cd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,7 @@ extern crate test; extern crate rustbox; extern crate docopt; -extern crate "rustc-serialize" as rustc_serialize; +extern crate rustc_serialize; extern crate encoding; extern crate ropey; //extern crate freetype;