urlshortener 0.1.0

A very-very simple url shortener library
Documentation

urlshortener-rs Build Status

A very-very simple urlshortener for Rust. Currently it uses is.gd service. It will be developed soon to use more services.

Usage

extern crate urlshortener;

use urlshortener::get_short_url;

fn main() {
    println!("Short url for google: {:?}", get_short_url("http://google.com"));
}