10 lines
251 B
Rust
Raw Normal View History

2015-05-17 23:26:04 -07:00
#![feature(custom_attribute, custom_derive, plugin, test)]
2016-02-06 14:17:02 -05:00
#![cfg_attr(feature = "clippy", plugin(clippy))]
2015-05-17 23:26:04 -07:00
#![plugin(serde_macros)]
extern crate rustc_serialize;
extern crate serde;
extern crate test;
2016-06-28 20:43:48 -07:00
include!("../../testing/benches/bench.rs.in");