clippy fix

This commit is contained in:
damirka 2021-07-19 18:37:52 +03:00
parent 2c58bf30a0
commit 9cc2a8e2d1

View File

@ -30,7 +30,7 @@ pub const LOCKFILE_FILENAME: &str = "Leo.lock";
/// Lock-file struct, contains all information about imported dependencies /// Lock-file struct, contains all information about imported dependencies
/// and their relationships. /// and their relationships.
#[derive(Debug, Clone, Serialize, Deserialize)] #[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct LockFile { pub struct LockFile {
pub package: Vec<Package>, pub package: Vec<Package>,
} }