Skip to content

Commit a1f7f3b

Browse files
committed
copy and adapt code and benchmarks from rust-lang/rust#59186
1 parent edc70bb commit a1f7f3b

File tree

5 files changed

+564
-0
lines changed

5 files changed

+564
-0
lines changed

Cargo.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "rust_bench_btreeset_intersection"
3+
version = "0.1.0"
4+
authors = ["Stein Somers <[email protected]>"]
5+
autotests = false
6+
autobenches = false
7+
edition = "2018"
8+
9+
[dev-dependencies]
10+
proptest = "0.9"
11+
rand = "0.6"
12+
rand_xorshift = "0.1"
13+
14+
[[test]]
15+
name = "collectionstests"
16+
path = "src/tests/set.rs"
17+
18+
[[bench]]
19+
name = "collectionsbenches"
20+
path = "src/benches/set.rs"
21+

0 commit comments

Comments
 (0)