Skip to content

Commit 903e6be

Browse files
committed
Run 'cargo fmt'
1 parent 8e85e0d commit 903e6be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/git.rs

+1-1
Original file line numberDiff line numberDiff 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

4343
pub struct Repository {

src/tests/builders.rs

+1-1
Original file line numberDiff line numberDiff 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
}

src/views/krate_publish.rs

+1-1
Original file line numberDiff line numberDiff 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

7070
impl<'de> Deserialize<'de> for EncodableCrateName {

0 commit comments

Comments
 (0)