Skip to content

Commit fa01131

Browse files
committed
fix(test): add rustc_serialize to test-crate
A top-level `cargo test` didn't work anymore thanks to a missing mention of rustc_serialize. [skip ci]
1 parent 3f49f50 commit fa01131

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ path = "src/rust/lib.rs"
1818
[dependencies]
1919
hyper = "*"
2020
mime = "*"
21+
rustc-serialize = "*"
2122
yup-oauth2 = "*"
2223
serde = "*"
2324
serde_macros = "*"

src/rust/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#[macro_use]
66
extern crate hyper;
77
extern crate mime;
8+
extern crate rustc_serialize;
89
extern crate yup_oauth2 as oauth2;
910
extern crate serde;
1011

0 commit comments

Comments
 (0)