forked from alexcrichton/curl-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "curl"
version = "0.2.9"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/carllerche/curl-rust"
description = "Rust bindings to libcurl for making HTTP requests"
[dependencies]
url = "0.2.0"
log = "0.3.0"
libc = "0.1"
curl-sys = { path = "curl-sys", version = "0.1.0" }
[dev-dependencies]
env_logger = "0.3.0"
# Unix platforms use OpenSSL for now to provide SSL functionality
[target.i686-apple-darwin.dependencies]
openssl-sys = "0.6.0"
[target.x86_64-apple-darwin.dependencies]
openssl-sys = "0.6.0"
[target.i686-unknown-linux-gnu.dependencies]
openssl-sys = "0.6.0"
[target.x86_64-unknown-linux-gnu.dependencies]
openssl-sys = "0.6.0"
[target.arm-unknown-linux-gnueabihf.dependencies]
openssl-sys = "0.6.0"
[target.aarch64-unknown-linux-gnu.dependencies]
openssl-sys = "0.6.0"
[target.i686-unknown-freebsd.dependencies]
openssl-sys = "0.6.0"
[target.x86_64-unknown-freebsd.dependencies]
openssl-sys = "0.6.0"
[[test]]
name = "test"
path = "test/test.rs"