Skip to content

Commit bc293ec

Browse files
committed
add expect_macro
1 parent 001ab08 commit bc293ec

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ repository = "https://github.com/rust-crates/ergo_std"
1313
version = "0.0.1"
1414

1515
[dependencies]
16+
expect_macro = "0.1.0"
1617
itertools = "0.7"
1718
lazy_static = "1.0"
1819
maplit = "1.0"

src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
//! - [**serde**](https://github.com/serde-rs/serde): Serialization framework for Rust
5757
//! - [**std_prelude**](https://github.com/vitiral/std_prelude): prelude that the rust stdlib
5858
//! should have always had
59+
//! - [**expect_macro**](https://github.com/vitiral/expect_macro): The `expect!` macro
5960
//! - [**lazy_static**](https://github.com/rust-lang-nursery/lazy-static.rs): A small macro for
6061
//! defining lazy evaluated static variables in Rust.
6162
//! - [**itertools**](https://github.com/bluss/rust-itertools): Extra iterator adaptors, iterator
@@ -69,6 +70,8 @@
6970
//! Consider supporting their development individually and starring them on github.
7071
#![allow(unused_imports)]
7172

73+
#[macro_use]
74+
pub extern crate expect_macro;
7275
#[macro_use]
7376
pub extern crate itertools;
7477
#[macro_use]
@@ -81,6 +84,7 @@ pub extern crate serde;
8184
#[macro_use]
8285
pub extern crate serde_derive;
8386

87+
pub use expect_macro::*;
8488
pub use std_prelude::*;
8589
pub use lazy_static::*;
8690
pub use itertools::Itertools;

0 commit comments

Comments
 (0)