Skip to content

Commit ef7c328

Browse files
committed
Splits the lib.rs file
1 parent d3a6c9c commit ef7c328

16 files changed

+2402
-2368
lines changed

Cargo.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,4 @@ const_generics = []
2222
may_dangle = []
2323
specialization = []
2424
std = []
25-
union = []
26-
27-
[lib]
28-
name = "smallvec"
29-
path = "lib.rs"
25+
union = []

benches/bench.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
extern crate test;
44

5-
use test::Bencher;
65
use smallvec::{smallvec, ExtendFromSlice, SmallVec};
6+
use test::Bencher;
77

88
const VEC_SIZE: usize = 16;
99
const SPILLED_SIZE: usize = 100;
@@ -294,4 +294,4 @@ fn bench_macro_from_list_vec(b: &mut Bencher) {
294294
];
295295
vec
296296
});
297-
}
297+
}

0 commit comments

Comments
 (0)