Skip to content

Commit

Permalink
Remove Clone bound on AnySpecializedJsonCredential.
Browse files Browse the repository at this point in the history
  • Loading branch information
timothee-haudebourg committed Jul 8, 2024
1 parent b1840a1 commit 2d3c0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/claims/crates/vc/src/syntax/credential.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub type AnyJsonCredential<S = json_syntax::Object> = AnySpecializedJsonCredenti
untagged,
bound(
serialize = "S: Serialize",
deserialize = "S: Deserialize<'de> + Clone, C: RequiredContextList, T: RequiredTypeSet"
deserialize = "S: Deserialize<'de>, C: RequiredContextList, T: RequiredTypeSet"
)
)]
pub enum AnySpecializedJsonCredential<S = json_syntax::Object, C = (), T = ()> {
Expand Down

0 comments on commit 2d3c0e3

Please sign in to comment.