Skip to content

Commit

Permalink
fix(test): add rustc_serialize to test-crate
Browse files Browse the repository at this point in the history
A top-level `cargo test` didn't work anymore thanks to a missing
mention of rustc_serialize.

[skip ci]
  • Loading branch information
Byron committed Apr 15, 2015
1 parent 3f49f50 commit fa01131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ path = "src/rust/lib.rs"
[dependencies]
hyper = "*"
mime = "*"
rustc-serialize = "*"
yup-oauth2 = "*"
serde = "*"
serde_macros = "*"
Expand Down
1 change: 1 addition & 0 deletions src/rust/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#[macro_use]
extern crate hyper;
extern crate mime;
extern crate rustc_serialize;
extern crate yup_oauth2 as oauth2;
extern crate serde;

Expand Down

0 comments on commit fa01131

Please sign in to comment.