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.
18
18
- ** bitmaps-3.1.0** : A bitmaps implementation. Stresses the compiler's trait
19
19
handling by implementing a trait ` Bits ` for the type ` BitsImpl<N> ` for every
20
20
` 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.
21
24
- ** cargo-0.60.0** : The Rust package manager. A large program, and an important
22
25
part of the Rust ecosystem.
23
26
- ** 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/**"
22
22
SPDX-License-Identifier = " MPL-2.0"
23
23
SPDX-FileCopyrightText = " Bodil Stokke"
24
24
25
+ [[annotations ]]
26
+ path = " bitmaps-3.2.1/**"
27
+ SPDX-License-Identifier = " MPL-2.0"
28
+ SPDX-FileCopyrightText = " Bodil Stokke"
29
+
25
30
[[annotations ]]
26
31
path = " cargo-0.60.0/**"
27
32
SPDX-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"
34
34
[features ]
35
35
default = [" std" ]
36
36
std = []
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