Rename os_string_extension.rs to os_str_extension.rs

This commit is contained in:
Leonard Steppy 2025-02-03 22:33:30 +01:00
parent 67eca84f9d
commit 02619870b9
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
use crate::os_string_extension::OsStrExtension;
use crate::os_str_extension::OsStrExtension;
use crate::osf;
use std::error::Error;
use std::ffi::{OsStr, OsString};

View File

@ -3,15 +3,15 @@ mod command;
mod file;
mod logger;
mod os_string_builder;
mod os_string_extension;
mod os_str_extension;
mod server;
use crate::action::{Action, FileAction, ServerActions};
use crate::command::{CommandSpecificError, ExecutionError, LogRunnable};
use crate::file::{FileMatcher, FileNameInfo};
use crate::logger::{LogLevel, Logger};
use crate::os_str_extension::OsStrExtension;
use crate::os_string_builder::ReplaceWithOsStr;
use crate::os_string_extension::OsStrExtension;
use crate::server::{RelativeLocalPathAnker, ServerAddress};
use clap::{Parser, Subcommand, ValueEnum};
use lazy_regex::{lazy_regex, Lazy, Regex};

View File

@ -81,7 +81,7 @@ where
#[cfg(test)]
mod test {
use crate::os_string_extension::OsStrExtension;
use crate::os_str_extension::OsStrExtension;
use std::ffi::OsString;
#[test]