Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@hyf0 hyf0 released this 08 Apr 11:24
· 4 commits to main since this release

What's Changed

Breaking changes compared to 0.0.12

  • SugarPathBuf trait is removed.
  • AsPath trait is removed. Its functionalities is merged into SugarPath.
  • The return type of methods of SugarPath is changed to PathBuf from Cow<Path>.

Refined Functionalities

  • SugarPath::as_path makes it easy to convert T: Deref<Target = str> to Path and allows to you methods of SugarPath on &str or String directly.
use std::path::Path;
use sugar_path::SugarPath;
assert_eq!("foo".as_path().join("bar"), Path::new("foo/bar"));
assert_eq!("foo/./bar/../baz".normalize(), "foo/baz".as_path());
use sugar_path::SugarPath;
#[cfg(target_family = "unix")]
let p = "./hello/world".as_path();
#[cfg(target_family = "windows")]
let p = ".\\hello\\world".as_path();
assert_eq!(p.to_slash().unwrap(), "./hello/world");
assert_eq!(p.to_slash_lossy(), "./hello/world");
use std::path::Path;
use sugar_path::SugarPath;
assert_eq!("foo/./bar/../baz".normalize(), "foo/baz".as_path());
  • SugarPath::relative allows you to get the relative path from the given path to the target path.
use sugar_path::SugarPath;
assert_eq!("/base".relative("/base/project"), "..".as_path());
assert_eq!("/base".relative("/var/lib"), "../../base".as_path());
use sugar_path::SugarPath;
let cwd = std::env::current_dir().unwrap();
assert_eq!("hello/world".absolutize(), cwd.join("hello").join("world"));
use sugar_path::SugarPath;
#[cfg(target_family = "unix")]
{
  assert_eq!("./world".absolutize_with("/hello"), "/hello/world".as_path());
  assert_eq!("../world".absolutize_with("/hello"), "/world".as_path());
}
#[cfg(target_family = "windows")]
{
 assert_eq!(".\\world".absolutize_with("C:\\hello"), "C:\\hello\\world".as_path());
  assert_eq!("..\\world".absolutize_with("C:\\hello"), "C:\\world".as_path());
}
  • For more details, please refer to the SugarPath.

Refined Documentation

I rewrite the documents of using SugarPath. It should be more straightforward for users to understand what SugarPath does.

See https://docs.rs/sugar_path/latest/sugar_path/ for more details.

New Contributors

Full Changelog: https://github.com/hyf0/sugar_path/commits/v1.0.0