File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ pub struct Dependency {
37
37
pub kind : Option < DependencyKind > ,
38
38
#[ serde( skip_serializing_if = "Option::is_none" ) ]
39
39
pub package : Option < String > ,
40
- pub public : bool
40
+ pub public : bool ,
41
41
}
42
42
43
43
pub struct Repository {
Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ impl DependencyBuilder {
588
588
kind : None ,
589
589
explicit_name_in_toml : self . explicit_name_in_toml ,
590
590
registry : self . registry ,
591
- public : Some ( false )
591
+ public : Some ( false ) ,
592
592
}
593
593
}
594
594
}
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pub struct EncodableCrateDependency {
64
64
pub kind : Option < DependencyKind > ,
65
65
pub explicit_name_in_toml : Option < EncodableCrateName > ,
66
66
pub registry : Option < String > ,
67
- pub public : Option < bool >
67
+ pub public : Option < bool > ,
68
68
}
69
69
70
70
impl < ' de > Deserialize < ' de > for EncodableCrateName {
You can’t perform that action at this time.
0 commit comments