Skip to content

Commit

Permalink
feat: add debug trait to LockFile struct in rattler_lock (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
blunderbussatya authored Nov 4, 2024
1 parent de51e4a commit 1e84316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/rattler_lock/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ pub const DEFAULT_ENVIRONMENT_NAME: &str = "default";
/// The high-level API provided by this type holds internal references to the
/// data. Its is therefore cheap to clone this type and any type derived from it
/// (e.g. [`Environment`] or [`Package`]).
#[derive(Clone, Default)]
#[derive(Clone, Default, Debug)]
pub struct LockFile {
inner: Arc<LockFileInner>,
}

/// Internal data structure that stores the lock-file data.
#[derive(Default)]
#[derive(Default, Debug)]
struct LockFileInner {
version: FileFormatVersion,
environments: Vec<EnvironmentData>,
Expand Down

0 comments on commit 1e84316

Please sign in to comment.