utf8_path/lib.rs
1// Copyright 2023 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![deny(missing_docs)]
6
7//! Utility methods for creating and manipulating UTF-8 paths.
8
9mod path_to_string;
10
11mod paths;
12
13pub use path_to_string::PathToStringExt;
14pub use paths::{
15 normalize_path, path_relative_from, path_relative_from_current_dir, path_relative_from_file,
16 resolve_path, resolve_path_from_file,
17};