mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-04-22 23:58:39 +02:00
Use Vec::new instead of vec!
This commit is contained in:
parent
5211436446
commit
ff82ad8db7
@ -65,8 +65,8 @@ impl PackageBuilder {
|
||||
Self(Package {
|
||||
name: name.into(),
|
||||
version: "0.1".into(),
|
||||
authors: vec![],
|
||||
dependencies: vec![],
|
||||
authors: Vec::new(),
|
||||
dependencies: Vec::new(),
|
||||
language: None,
|
||||
})
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user