Skip to content

Commit 35f032e

Browse files
committed
publishing
1 parent 053c6f5 commit 35f032e

File tree

10 files changed

+22
-18
lines changed

10 files changed

+22
-18
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ path = "module/alias/file_tools"
367367
default-features = false
368368

369369
[workspace.dependencies.proper_path_tools]
370-
version = "~0.14.0"
370+
version = "~0.15.0"
371371
path = "module/core/proper_path_tools"
372372
default-features = false
373373

@@ -392,7 +392,7 @@ version = "~0.4.0"
392392
path = "module/alias/wtest"
393393

394394
[workspace.dependencies.test_tools]
395-
version = "~0.11.0"
395+
version = "~0.10.0"
396396
path = "module/core/test_tools"
397397
features = [ "full" ]
398398

module/core/proper_path_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proper_path_tools"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
authors = [
66
"Kostiantyn Wandalen <[email protected]>",

module/core/proper_path_tools/src/as_path.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/// Internal namespace.
22
mod private
33
{
4-
// use crate::*;
5-
#[cfg( feature = "no_std" )]
4+
#[ allow( unused_imports ) ]
5+
use crate::*;
6+
#[ cfg( feature = "no_std" ) ]
67
extern crate std;
78

89
use std::path::Path;
9-
use camino::Utf8Path;
1010

1111
/// A trait for converting various types into a reference to a `Path`.
1212
///

module/core/proper_path_tools/src/path/absolute_path.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ mod private
1212
fmt,
1313
ops::{ Deref, DerefMut },
1414
};
15-
#[cfg( feature = "no_std" )]
15+
#[ cfg( feature = "no_std" ) ]
1616
extern crate std;
17-
#[cfg( feature = "no_std" )]
17+
#[ cfg( feature = "no_std" ) ]
1818
use alloc::string::String;
19-
#[cfg( feature = "derive_serde" )]
19+
#[ cfg( feature = "derive_serde" ) ]
2020
use serde::{ Serialize, Deserialize };
21-
#[cfg( feature = "path_utf8" )]
22-
use camino::{ Utf8Path, Utf8PathBuf };
21+
22+
// #[ cfg( feature = "path_utf8" ) ]
23+
// use camino::{ Utf8Path, Utf8PathBuf };
2324

2425
/// A new type representing an absolute path.
2526
///

module/core/proper_path_tools/src/path/canonical_path.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ mod private
3131
#[ cfg( feature = "derive_serde" ) ]
3232
use serde::{ Serialize, Deserialize };
3333

34-
#[ cfg( feature = "path_utf8" ) ]
35-
use camino::{ Utf8Path, Utf8PathBuf };
34+
// #[ cfg( feature = "path_utf8" ) ]
35+
// use camino::{ Utf8Path, Utf8PathBuf };
3636

3737
/// Caninical path.
3838
#[ cfg_attr( feature = "derive_serde", derive( Serialize, Deserialize ) ) ]

module/core/proper_path_tools/src/path/native_path.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ mod private
3030
#[ cfg( feature = "derive_serde" ) ]
3131
use serde::{ Serialize, Deserialize };
3232

33-
#[ cfg( feature = "path_utf8" ) ]
34-
use camino::{ Utf8Path, Utf8PathBuf };
33+
// #[ cfg( feature = "path_utf8" ) ]
34+
// use camino::{ Utf8Path, Utf8PathBuf };
3535

3636
/// Caninical path.
3737
#[ cfg_attr( feature = "derive_serde", derive( Serialize, Deserialize ) ) ]

module/core/proper_path_tools/src/try_into_cow_path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mod private
88
io,
99
path::{ Component, Path, PathBuf },
1010
};
11-
use camino::{ Utf8Path, Utf8PathBuf };
11+
// use camino::{ Utf8Path, Utf8PathBuf };
1212

1313
/// A trait for converting various types into a `Cow<Path>`.
1414
///

module/core/proper_path_tools/src/try_into_path.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
/// Internal namespace.
22
mod private
33
{
4+
#[ allow( unused_imports ) ]
5+
use crate::*;
46
use std::
57
{
68
io,
79
path::{ Component, Path, PathBuf },
810
};
9-
use camino::{ Utf8Path, Utf8PathBuf };
11+
// use camino::{ Utf8Path, Utf8PathBuf };
1012

1113
/// A trait for converting various types into a `PathBuf`.
1214
///

module/core/test_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_tools"
3-
version = "0.11.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = [
66
"Kostiantyn Wandalen <[email protected]>",

module/core/test_tools/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pub mod dependency
4343
#[ doc( inline ) ]
4444
#[ allow( unused_imports ) ]
4545
pub use ::process_tools;
46+
4647
// #[ doc( inline ) ]
4748
// #[ allow( unused_imports ) ]
4849
// pub use ::process_tools as process_tools;

0 commit comments

Comments
 (0)