File tree Expand file tree Collapse file tree 4 files changed +21
-0
lines changed
collector/compile-benchmarks Expand file tree Collapse file tree 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.
4949 binary crate.
5050- ** serde-1.0.136** : A serialization/deserialization crate. Used by many other
5151 Rust programs.
52+ - ** serde-1.0.219** : A serialization/deserialization crate. Used by many other
53+ Rust programs.
5254- ** serde_derive-1.0.136** : A proc-macro sub-crate used by ` serde ` . Used by
5355 many other Rust programs. Stresses declarative macro expansion somewhat.
5456- ** 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/**"
220220SPDX-FileCopyrightText = " serde contributors"
221221SPDX-License-Identifier = " MIT OR Apache-2.0"
222222
223+ [[annotations ]]
224+ path = " serde-1.0.219/**"
225+ SPDX-FileCopyrightText = " serde contributors"
226+ SPDX-License-Identifier = " MIT OR Apache-2.0"
227+
223228[[annotations ]]
224229path = " serde_derive-1.0.136/**"
225230SPDX-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"
8282
8383[target ."cfg(any())" .dependencies .serde_derive ]
8484version = " =1.0.219"
85+
86+ [workspace ]
You can’t perform that action at this time.
0 commit comments