urlcat

Inspired by urlcat

What is this?

This package urlbat rewritten in rust

Features

Simple example showing what it can do

```rust use std::collections::HashMap; use urlcat::urlcat;

fn main() { let url = urlcat( "https://example.com/", "path/:crab/resource", HashMap::from([ ("pretty", "cool/+/& yep".tostring()), ("really", "cool/+/& probably".tostring()), ("crab", "🦀".tostring()), ]); ); asserteq!( url, "https://example.com/path/🦀 well actually (%F0%9F%A6%80)/resource?pretty=cool%2F%2B%2F%26+yep&really=cool%2F%2B%2F%26+probably" ); } ```