Use serde_derive instead of serde_macros.
This commit is contained in:
parent
a23203317e
commit
1fe0436f0e
@ -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"
|
||||
|
@ -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};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user