url-builder-rs

A simple URL builder with no dependencies, useful for a drop-in way to build URLs in a safe way no matter the protocol. See docs.rs.

Example

```rust use url_builder::URLBuilder;

let mut ub = URLBuilder::new(); ub.setprotocol("http") .sethost("localhost") .setport(8000) .addparam("first", "1") .addparam("second", "2") .addparam("third", "3");

println!("{}", ub.build()); ```