libfmt_macros => 2018

This commit is contained in:
Mazdak Farrokhzad 2019-02-02 18:18:39 +01:00
parent 2efa31b2d9
commit 39394c8126
2 changed files with 8 additions and 6 deletions

View file

@ -2,6 +2,7 @@
authors = ["The Rust Project Developers"]
name = "fmt_macros"
version = "0.0.0"
edition = "2018"
[lib]
name = "fmt_macros"

View file

@ -10,14 +10,15 @@
html_playground_url = "https://play.rust-lang.org/",
test(attr(deny(warnings))))]
#![feature(nll)]
#![deny(rust_2018_idioms)]
#![feature(rustc_private)]
pub use self::Piece::*;
pub use self::Position::*;
pub use self::Alignment::*;
pub use self::Flag::*;
pub use self::Count::*;
pub use Piece::*;
pub use Position::*;
pub use Alignment::*;
pub use Flag::*;
pub use Count::*;
use std::str;
use std::string;