🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

uri-parsing-rs

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uri-parsing-rs

Source
crates.io
Version
0.0.1
Version published
Maintainers
1
Created
Source

uri-rs

A Rust crate for URI.

Workflow Status crates.io docs.rs dependency status tokei

Install to Cargo.toml

Add this to your Cargo.toml:

[dependencies]
uri-rs = "<<version>>"

Usage

use uri_rs::Uri;
let s = "http://user1:pass1@localhost:8080/example?key1=value1&key2=value2&key1=value2#f1";
let uri = Uri::parse(s).unwrap();
println!("{:?}", uri);
// Uri {
//    schema: Scheme("http"),
//    authority: Some(
//      Authority {
//        host_name: HostName("localhost"),
//        port: Some(8080),
//        user_info: Some(
//          UserInfo {
//            user_name: "user1",
//            password: Some("pass1")
//          }
//        )
//      }
//    ),
//    path: AbemptyPath {
//      type_name: "abempty_path",
//      parts: ["example"]
//    },
//    query: Some(
//      Query {
//        params: [
//          ("key1", Some("value1")),
//          ("key2", Some("value2")),
//          ("key1", Some("value2"))
//        ]
//      }
//    ),
//    fragment: Some("f1")
// }
println!("{}", uri.to_string());
// http://user1:pass1@localhost:8080/example?key1=value1&key2=value2&key1=value2#f1

Benchmarks

TODO

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

FAQs

Package last updated on 31 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts