Skip to content

Commit e49aa39

Browse files
committed
make utils pub(crate) where possible
1 parent c94e002 commit e49aa39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//! Various utilities for cratesfyi
22
33

4-
pub use self::copy::copy_doc_dir;
4+
pub(crate) use self::copy::copy_doc_dir;
55
pub use self::github_updater::github_updater;
66
pub use self::release_activity_updater::update_release_activity;
77
pub use self::daemon::start_daemon;
8-
pub use self::rustc_version::{parse_rustc_version, get_current_versions, command_result};
9-
pub use self::html::extract_head_and_body;
8+
pub(crate) use self::rustc_version::parse_rustc_version;
9+
pub(crate) use self::html::extract_head_and_body;
1010
pub use self::queue::add_crate_to_queue;
1111
pub(crate) use self::cargo_metadata::{CargoMetadata, Package as MetadataPackage};
1212

0 commit comments

Comments
 (0)