furl-0.1.2 is not a library.
Command line formatter for URLs, based on url and clap.
Install with: cargo install furl
Examples:
host='localhost' port='5432' db='db' user='usr' pwd='pwd'
scheme='https' query='q=rust+furl' path='/search' port=''
path='/wiki/Rust' fragment='Prevention'
The formatting string can contain any of the following substitutions:
%A - the path, without the starting '/'
%a - the path
%f - the fragment
%h - the hostname
%P - the password of the userinfo portion
%p - the port
%q - the query string
%s - the scheme
%U - the username of the userinfo portion
%n - newline (\n)
%t - tab (\t)
%% - a single %
Bash example
DPG="docker run -d --rm --name pg-%A -v vol-%A:/var/lib/postgresql \
-p %p:5432 \
-e POSTGRES_DB=%A -e POSTGRES_USER=%U -e POSTGRES_PASSWORD=%P \
postgres"