From bc293ec80536888080c596d14d54da99abc0557c Mon Sep 17 00:00:00 2001 From: Garrett Berg Date: Thu, 8 Feb 2018 09:07:30 -0700 Subject: [PATCH] add expect_macro --- Cargo.toml | 1 + src/lib.rs | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d94ec63..f63f575 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ repository = "https://github.com/rust-crates/ergo_std" version = "0.0.1" [dependencies] +expect_macro = "0.1.0" itertools = "0.7" lazy_static = "1.0" maplit = "1.0" diff --git a/src/lib.rs b/src/lib.rs index a7193a1..9e044c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -56,6 +56,7 @@ //! - [**serde**](https://github.com/serde-rs/serde): Serialization framework for Rust //! - [**std_prelude**](https://github.com/vitiral/std_prelude): prelude that the rust stdlib //! should have always had +//! - [**expect_macro**](https://github.com/vitiral/expect_macro): The `expect!` macro //! - [**lazy_static**](https://github.com/rust-lang-nursery/lazy-static.rs): A small macro for //! defining lazy evaluated static variables in Rust. //! - [**itertools**](https://github.com/bluss/rust-itertools): Extra iterator adaptors, iterator @@ -69,6 +70,8 @@ //! Consider supporting their development individually and starring them on github. #![allow(unused_imports)] +#[macro_use] +pub extern crate expect_macro; #[macro_use] pub extern crate itertools; #[macro_use] @@ -81,6 +84,7 @@ pub extern crate serde; #[macro_use] pub extern crate serde_derive; +pub use expect_macro::*; pub use std_prelude::*; pub use lazy_static::*; pub use itertools::Itertools;