File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ pub struct Dependency {
3737 pub kind : Option < DependencyKind > ,
3838 #[ serde( skip_serializing_if = "Option::is_none" ) ]
3939 pub package : Option < String > ,
40- pub public : bool
40+ pub public : bool ,
4141}
4242
4343pub struct Repository {
Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ impl DependencyBuilder {
588588 kind : None ,
589589 explicit_name_in_toml : self . explicit_name_in_toml ,
590590 registry : self . registry ,
591- public : Some ( false )
591+ public : Some ( false ) ,
592592 }
593593 }
594594}
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pub struct EncodableCrateDependency {
6464 pub kind : Option < DependencyKind > ,
6565 pub explicit_name_in_toml : Option < EncodableCrateName > ,
6666 pub registry : Option < String > ,
67- pub public : Option < bool >
67+ pub public : Option < bool > ,
6868}
6969
7070impl < ' de > Deserialize < ' de > for EncodableCrateName {
You can’t perform that action at this time.
0 commit comments