4个版本

0.1.3 2020年4月26日
0.1.2 2018年10月3日
0.1.1 2018年10月3日
0.1.0 2018年10月3日

#1491Web编程

Download history • Rust 包仓库 322/week @ 2024-04-01 • Rust 包仓库 434/week @ 2024-04-08 • Rust 包仓库 193/week @ 2024-04-15 • Rust 包仓库 213/week @ 2024-04-22 • Rust 包仓库 522/week @ 2024-04-29 • Rust 包仓库 486/week @ 2024-05-06 • Rust 包仓库 266/week @ 2024-05-13 • Rust 包仓库 285/week @ 2024-05-20 • Rust 包仓库 241/week @ 2024-05-27 • Rust 包仓库 227/week @ 2024-06-03 • Rust 包仓库 199/week @ 2024-06-10 • Rust 包仓库 213/week @ 2024-06-17 • Rust 包仓库 282/week @ 2024-06-24 • Rust 包仓库 200/week @ 2024-07-01 • Rust 包仓库 266/week @ 2024-07-08 • Rust 包仓库 272/week @ 2024-07-15 • Rust 包仓库

1,037 每月下载量
用于 7 个Crate (3 直接)

MIT 协议

10KB
229

url_path

url_path 无需文件在服务器或OS中存在即可操作URL路径。这在操作位置URL时很有用。示例用法

use url_path::UrlPath;

fn main(){
    let url_path1 = UrlPath::new("src/md/./../../README.md");
    let normalized_path1 = url_path1.normalize();
    assert_eq!("README.md", normalized_path1);

    let url_path2 = UrlPath::new("./README.md");
    let normalized_path2 = url_path2.normalize();
    assert_eq!("README.md", normalized_path2);
}

许可证:MIT


lib.rs:

url_path 无需文件在服务器或OS中存在即可操作URL路径。这在操作位置URL时很有用。示例用法

use url_path::UrlPath;

fn main(){
    let url_path1 = UrlPath::new("src/md/./../../README.md");
    let normalized_path1 = url_path1.normalize();
    assert_eq!("README.md", normalized_path1);

    let url_path2 = UrlPath::new("./README.md");
    let normalized_path2 = url_path2.normalize();
    assert_eq!("README.md", normalized_path2);
}

无运行时依赖