fix(serde-up): update to serde 0.5.0

Serde move all json code into a separate crate that we are now using
as well.
This commit is contained in:
Sebastian Thiel
2015-08-08 10:52:23 +02:00
parent 62b63b251a
commit 8ab4fd0bd4
9 changed files with 36 additions and 16 deletions

View File

@@ -21,6 +21,7 @@
extern crate hyper;
extern crate serde;
extern crate serde_json;
extern crate yup_oauth2 as oauth2;
extern crate mime;
extern crate url;
@@ -32,7 +33,7 @@ use std::cell::RefCell;
use std::borrow::BorrowMut;
use std::default::Default;
use std::collections::BTreeMap;
use serde::json;
use serde_json as json;
use std::io;
use std::fs;
use std::thread::sleep_ms;