File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ repository = "https://github.com/rust-crates/ergo_std"
13
13
version = " 0.0.1"
14
14
15
15
[dependencies ]
16
+ expect_macro = " 0.1.0"
16
17
itertools = " 0.7"
17
18
lazy_static = " 1.0"
18
19
maplit = " 1.0"
Original file line number Diff line number Diff line change 56
56
//! - [**serde**](https://github.com/serde-rs/serde): Serialization framework for Rust
57
57
//! - [**std_prelude**](https://github.com/vitiral/std_prelude): prelude that the rust stdlib
58
58
//! should have always had
59
+ //! - [**expect_macro**](https://github.com/vitiral/expect_macro): The `expect!` macro
59
60
//! - [**lazy_static**](https://github.com/rust-lang-nursery/lazy-static.rs): A small macro for
60
61
//! defining lazy evaluated static variables in Rust.
61
62
//! - [**itertools**](https://github.com/bluss/rust-itertools): Extra iterator adaptors, iterator
69
70
//! Consider supporting their development individually and starring them on github.
70
71
#![ allow( unused_imports) ]
71
72
73
+ #[ macro_use]
74
+ pub extern crate expect_macro;
72
75
#[ macro_use]
73
76
pub extern crate itertools;
74
77
#[ macro_use]
@@ -81,6 +84,7 @@ pub extern crate serde;
81
84
#[ macro_use]
82
85
pub extern crate serde_derive;
83
86
87
+ pub use expect_macro:: * ;
84
88
pub use std_prelude:: * ;
85
89
pub use lazy_static:: * ;
86
90
pub use itertools:: Itertools ;
You can’t perform that action at this time.
0 commit comments