Update deps, rustc_macro --> proc_macro.
This commit is contained in:
parent
6200bbeca6
commit
e6c0dd4bdc
@ -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"
|
||||
|
@ -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};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user