Format URLs for fetch requests using templates and substitution values.

Usage

``` use format_url::FormatUrl;

let url = FormatUrl::new("https://api.example.com/") .withpathtemplate("/user/:name") .withsubstitutes(vec![("name", "alex")]) .withqueryparams(vec![("active", "true")]) .formaturl();

assert_eq!(url, "https://api.example.com/user/alex?active=true"); ```

Wishlist