Skip to content

Commit 0650d22

Browse files
committed
publish
1 parent 979f880 commit 0650d22

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.pth]
370-
version = "~0.16.0"
370+
version = "~0.17.0"
371371
path = "module/core/pth"
372372
default-features = false
373373

module/core/pth/Cargo.toml

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

module/core/pth/src/lib.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,13 @@ mod_interface!
3232

3333
#[ cfg( feature = "path_utf8" ) ]
3434
own use ::camino::{ Utf8Path, Utf8PathBuf };
35+
36+
// #[ cfg( not( feature = "no_std" ) ) ]
37+
// own use ::std::path::{ PathBuf, Path, Component };
38+
3539
#[ cfg( not( feature = "no_std" ) ) ]
36-
own use ::std::path::{ PathBuf, Path, Component };
40+
own use ::std::path::*;
41+
3742
#[ cfg( not( feature = "no_std" ) ) ]
3843
own use ::std::borrow::Cow;
3944

0 commit comments

Comments
 (0)