From e6a730adfa1a827887d9ed1066707b502ef16be1 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 20 Mar 2024 20:44:37 +0000 Subject: [PATCH] FOUND --- Cargo.lock | 2 -- src/main.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd0b530..32c0b93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,8 +5,6 @@ version = 3 [[package]] name = "educe" version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4bd92664bf78c4d3dba9b7cdafce6fa15b13ed3ed16175218196942e99168a8" dependencies = [ "enum-ordinalize", "proc-macro2", diff --git a/src/main.rs b/src/main.rs index 1d8c824..bef15e6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,7 +12,7 @@ trait Object {} impl Object for NotDebug {} #[derive(Educe)] -#[educe(Clone, Debug(bound(T: Debug)))] +#[educe(Clone(bound(T: Clone)), Debug(bound(T: Debug)))] //#[educe(Clone, Debug)] pub struct Obj { #[educe(Debug(ignore))] -- 2.30.2