Skip to content

Commit

Permalink
feat: implement Clone for AboutJson (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbe7a authored Jan 5, 2024
1 parent 97b0526 commit bc97f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rattler_conda_types/src/package/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use rattler_macros::sorted;
#[serde_as]
#[sorted]
#[skip_serializing_none]
#[derive(Debug, Deserialize, Serialize, Eq, PartialEq)]
#[derive(Debug, Clone, Deserialize, Serialize, Eq, PartialEq)]
pub struct AboutJson {
/// A list of channels that where used during the build
#[serde(skip_serializing_if = "Vec::is_empty", default)]
Expand Down

0 comments on commit bc97f9c

Please sign in to comment.