#parse-url #lib #parser

miniurl

miniurl 是一个用于 Rust 的 URL 解析库

4 个版本

使用旧的 Rust 2015

0.1.3 2017年8月17日
0.1.2 2017年8月13日
0.1.1 2017年8月13日
0.1.0 2017年8月12日

46#parse-url

Download history • Rust 包仓库 1/week @ 2024-03-23 • Rust 包仓库 17/week @ 2024-03-30 • Rust 包仓库 5/week @ 2024-04-06 • Rust 包仓库 4/week @ 2024-04-13 • Rust 包仓库 5/week @ 2024-04-20 • Rust 包仓库 1/week @ 2024-04-27 • Rust 包仓库 6/week @ 2024-05-11 • Rust 包仓库 9/week @ 2024-05-18 • Rust 包仓库 3/week @ 2024-05-25 • Rust 包仓库 6/week @ 2024-06-01 • Rust 包仓库 3/week @ 2024-06-08 • Rust 包仓库 19/week @ 2024-06-15 • Rust 包仓库 179/week @ 2024-06-22 • Rust 包仓库 4/week @ 2024-06-29 • Rust 包仓库

203 每月下载量
用于 2 crates

MIT/Apache 许可

10KB
172

miniurl 是 Rust 的 URL 解析库,简单易用。

示例

use miniurl::Url;

let url = Url::parse("http://admin:password@google.com/foo?a=1&b=2#top");
assert_eq!(url.scheme, "http");
assert_eq!(url.netloc, "admin:password@google.com");
assert_eq!(url.path, "/foo");
assert_eq!(url.query, Some("a=1&b=2".to_string()));
assert_eq!(url.fragment, Some("top".to_string()));
assert_eq!(url.username, Some("admin".to_string()));
assert_eq!(url.password, Some("password".to_string()));
assert_eq!(url.host, Some("google.com".to_string()));
assert_eq!(url.port, 80);

无运行时依赖