File tree Expand file tree Collapse file tree 5 files changed +26
-0
lines changed
collector/compile-benchmarks Expand file tree Collapse file tree 5 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ They mostly consist of real-world crates.
1818- ** bitmaps-3.1.0** : A bitmaps implementation. Stresses the compiler's trait
1919 handling by implementing a trait ` Bits ` for the type ` BitsImpl<N> ` for every
2020 ` N ` value from 1 to 1024.
21+ - ** bitmaps-3.2.1** : A bitmaps implementation. Stresses the compiler's trait
22+ handling by implementing a trait ` Bits ` for the type ` BitsImpl<N> ` for every
23+ ` N ` value from 1 to 1024.
2124- ** cargo-0.60.0** : The Rust package manager. A large program, and an important
2225 part of the Rust ecosystem.
2326- ** clap-3.1.6** : A command line argument parser library. A crate used by many
Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ path = "bitmaps-3.1.0/**"
2222SPDX-License-Identifier = " MPL-2.0"
2323SPDX-FileCopyrightText = " Bodil Stokke"
2424
25+ [[annotations ]]
26+ path = " bitmaps-3.2.1/**"
27+ SPDX-License-Identifier = " MPL-2.0"
28+ SPDX-FileCopyrightText = " Bodil Stokke"
29+
2530[[annotations ]]
2631path = " cargo-0.60.0/**"
2732SPDX-FileCopyrightText = " The Rust Project Developers (see https://thanks.rust-lang.org)"
Original file line number Diff line number Diff line change 1+ diff --git a/src/bitmap.rs b/src/bitmap.rs
2+ index ba5d1b18..9542a890 100644
3+ --- a/src/bitmap.rs
4+ +++ b/src/bitmap.rs
5+ @@ -27,6 +27,7 @@ where
6+ BitsImpl<{ SIZE }>: Bits,
7+ {
8+ fn clone(&self) -> Self {
9+ + println!("testing");
10+ Bitmap::from_value(self.data)
11+ }
12+ }
Original file line number Diff line number Diff line change @@ -34,3 +34,5 @@ version = "0.4.0"
3434[features ]
3535default = [" std" ]
3636std = []
37+
38+ [workspace ]
Original file line number Diff line number Diff line change 1+ {
2+ "artifact" : " library" ,
3+ "category" : " primary"
4+ }
You can’t perform that action at this time.
0 commit comments