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

uri-builder

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uri-builder

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

URI Builder

Simple URI builder library. Provides setter fields according to the URI specification.

Example

use uri_builder::URI;

let uri: String = URI::new("http")
    .host("github")
    .path_vec(vec!["dikuchan", "repos"].as_ref())
    .query("page", 1)
    .build();

The above example results in https://github.com/dikuchan/repos?page=1.

FAQs

Package last updated on 14 Sep 2020

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