gofer 0.2.0

Gofer.rs makes it easy to fetch data from any URL.
Documentation
// This is free and unencumbered software released into the public domain.

#[cfg(feature = "data")]
pub mod data;

#[cfg(feature = "file")]
pub mod file;

#[cfg(any(feature = "ftp", feature = "ftps"))]
pub mod ftp;

#[cfg(feature = "git")]
pub mod git;

#[cfg(any(feature = "http", feature = "https"))]
pub mod http;

#[cfg(feature = "ipfs")]
pub mod ipfs;

#[cfg(feature = "scp")]
pub mod scp;

#[cfg(feature = "stdin")]
pub mod stdin;

#[cfg(any(feature = "http", feature = "https", feature = "git", feature = "ipfs"))]
mod request;