Use serde_derive instead of serde_macros.

This commit is contained in:
Jimmy Cuadra 2016-09-29 04:37:01 -07:00
parent a23203317e
commit 1fe0436f0e
2 changed files with 5 additions and 5 deletions

View File

@ -12,6 +12,6 @@ version = "0.1.0"
[dependencies]
ruma-identifiers = "0.4.0"
serde = "0.8.1"
serde_json = "0.8.1"
serde_macros = "0.8.1"
serde = "0.8.10"
serde_derive = "0.8.10"
serde_json = "0.8.2"

View File

@ -1,13 +1,13 @@
//! Crate ruma_events contains serializable types for the events in the [Matrix](https://matrix.org)
//! specification that can be shared by client and server code.
#![feature(custom_derive, plugin, question_mark)]
#![plugin(serde_macros)]
#![feature(rustc_macro)]
#![deny(missing_docs)]
extern crate ruma_identifiers;
extern crate serde;
extern crate serde_json;
#[macro_use] extern crate serde_derive;
use std::fmt::{Display, Formatter, Error as FmtError};