Fix visbility of PathExt: Mark it as pub

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-06-12 01:54:15 +10:00
parent cb2be5a882
commit c6687edf48
No known key found for this signature in database
GPG key ID: 591C0B03040416D6

View file

@ -1,6 +1,6 @@
use std::path::{Component, Path, PathBuf};
trait PathExt {
pub trait PathExt {
fn normalize_path(&self) -> PathBuf;
}