Update deps, rustc_macro --> proc_macro.

This commit is contained in:
Jimmy Cuadra 2016-10-16 16:04:29 -07:00
parent 6200bbeca6
commit e6c0dd4bdc
2 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ repository = "https://github.com/ruma/ruma-events"
version = "0.1.0"
[dependencies]
ruma-identifiers = "0.4.0"
serde = "0.8.10"
serde_derive = "0.8.10"
serde_json = "0.8.2"
ruma-identifiers = "0.4.2"
serde = "0.8.13"
serde_derive = "0.8.13"
serde_json = "0.8.3"

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(rustc_macro)]
#![feature(proc_macro)]
#![deny(missing_docs)]
extern crate ruma_identifiers;
extern crate serde;
extern crate serde_json;
#[macro_use] extern crate serde_derive;
extern crate serde_json;
use std::fmt::{Debug, Display, Formatter, Error as FmtError};