curl 0.3.3

Rust bindings to libcurl for making HTTP requests
Documentation
[package]

name = "curl"
version = "0.3.3"
authors = ["Carl Lerche <me@carllerche.com>",
           "Alex Crichton <alex@alexcrichton.com>"]
license = "MIT"
repository = "https://github.com/carllerche/curl-rust"
description = "Rust bindings to libcurl for making HTTP requests"

[dependencies]
libc = "0.2"
curl-sys = { path = "curl-sys", version = "0.2.1" }

# Unix platforms use OpenSSL for now to provide SSL functionality
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies]
openssl-sys = "0.7.0"

[dev-dependencies]
mio = "0.5"