Transition build-manifest to 2018 edition

This commit is contained in:
Hirokazu Hata 2019-02-04 00:05:53 +09:00
parent 8ae730a442
commit 5d9eed4191
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
name = "build-manifest"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
[dependencies]
toml = "0.4"

View File

@ -1,4 +1,6 @@
extern crate toml;
#![deny(rust_2018_idioms)]
use toml;
#[macro_use]
extern crate serde_derive;