File tree 4 files changed +21
-0
lines changed
collector/compile-benchmarks
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ They mostly consist of real-world crates.
49
49
binary crate.
50
50
- ** serde-1.0.136** : A serialization/deserialization crate. Used by many other
51
51
Rust programs.
52
+ - ** serde-1.0.219** : A serialization/deserialization crate. Used by many other
53
+ Rust programs.
52
54
- ** serde_derive-1.0.136** : A proc-macro sub-crate used by ` serde ` . Used by
53
55
many other Rust programs. Stresses declarative macro expansion somewhat.
54
56
- ** serde_derive-1.0.219** : A proc-macro sub-crate used by ` serde ` . Used by
Original file line number Diff line number Diff line change @@ -220,6 +220,11 @@ path = "serde-1.0.136/**"
220
220
SPDX-FileCopyrightText = " serde contributors"
221
221
SPDX-License-Identifier = " MIT OR Apache-2.0"
222
222
223
+ [[annotations ]]
224
+ path = " serde-1.0.219/**"
225
+ SPDX-FileCopyrightText = " serde contributors"
226
+ SPDX-License-Identifier = " MIT OR Apache-2.0"
227
+
223
228
[[annotations ]]
224
229
path = " serde_derive-1.0.136/**"
225
230
SPDX-FileCopyrightText = " serde contributors"
Original file line number Diff line number Diff line change
1
+ diff --git a/src/de/value.rs b/src/de/value.rs
2
+ index 8f9c0b48..2402c9ec 100644
3
+ --- a/src/de/value.rs
4
+ +++ b/src/de/value.rs
5
+ @@ -37,6 +37,7 @@ macro_rules! impl_copy_clone {
6
+
7
+ impl<$($lifetime,)* E> Clone for $ty<$($lifetime,)* E> {
8
+ fn clone(&self) -> Self {
9
+ + println!();
10
+ *self
11
+ }
12
+ }
Original file line number Diff line number Diff line change @@ -82,3 +82,5 @@ version = "1"
82
82
83
83
[target ."cfg(any())" .dependencies .serde_derive ]
84
84
version = " =1.0.219"
85
+
86
+ [workspace ]
You can’t perform that action at this time.
0 commit comments