Skip to content

Commit fd7a68c

Browse files
committed
database/models/version: Remove unnecessary pub specifiers
These fields don't need to be public anymore.
1 parent 19759c7 commit fd7a68c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/crates_io_database/src/models/version.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ pub struct NewVersion<'a> {
9494
checksum: &'a str,
9595
links: Option<&'a str>,
9696
rust_version: Option<&'a str>,
97-
pub has_lib: Option<bool>,
98-
pub bin_names: Option<&'a [&'a str]>,
97+
has_lib: Option<bool>,
98+
bin_names: Option<&'a [&'a str]>,
9999
edition: Option<&'a str>,
100100
description: Option<&'a str>,
101101
homepage: Option<&'a str>,

0 commit comments

Comments
 (0)