-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copy and adapt code and benchmarks from rust-lang/rust#59186
- Loading branch information
Showing
5 changed files
with
564 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "rust_bench_btreeset_intersection" | ||
version = "0.1.0" | ||
authors = ["Stein Somers <git@steinsomers.be>"] | ||
autotests = false | ||
autobenches = false | ||
edition = "2018" | ||
|
||
[dev-dependencies] | ||
proptest = "0.9" | ||
rand = "0.6" | ||
rand_xorshift = "0.1" | ||
|
||
[[test]] | ||
name = "collectionstests" | ||
path = "src/tests/set.rs" | ||
|
||
[[bench]] | ||
name = "collectionsbenches" | ||
path = "src/benches/set.rs" | ||
|
Oops, something went wrong.