Skip to content

Commit

Permalink
make RunExportsJson cloneable (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Apr 15, 2023
1 parent c8107fc commit 501380b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rattler_conda_types/src/package/run_exports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use serde_with::{serde_as, skip_serializing_none};
/// The `run_exports.json` file contains information about the run exports of a package
#[serde_as]
#[skip_serializing_none]
#[derive(Debug, Deserialize, Serialize, Eq, PartialEq, Hash)]
#[derive(Debug, Deserialize, Serialize, Eq, PartialEq, Hash, Clone)]
pub struct RunExportsJson {
/// weak run exports apply a dependency from host to run
#[serde(skip_serializing_if = "Vec::is_empty", default)]
Expand Down

0 comments on commit 501380b

Please sign in to comment.