-
Notifications
You must be signed in to change notification settings - Fork 237
/
Cargo.toml
30 lines (26 loc) · 1002 Bytes
/
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
[package]
name = "curl-sys"
version = "0.1.0"
authors = []
links = "curl"
build = "build.rs"
[build-dependencies.pkg-config]
git = "https://github.com/alexcrichton/pkg-config-rs"
[lib]
name = "curl-sys"
path = "lib.rs"
[dependencies.libz-sys]
git = "https://github.com/alexcrichton/libz-sys"
# Unix platforms use OpenSSL for now to provide SSL functionality
[target.i686-apple-darwin.dependencies.openssl-sys]
git = "https://github.com/sfackler/rust-openssl"
[target.x86_64-apple-darwin.dependencies.openssl-sys]
git = "https://github.com/sfackler/rust-openssl"
[target.i686-unknown-linux-gnu.dependencies.openssl-sys]
git = "https://github.com/sfackler/rust-openssl"
[target.x86_64-unknown-linux-gnu.dependencies.openssl-sys]
git = "https://github.com/sfackler/rust-openssl"
[target.i686-unknown-freebsd.dependencies.openssl-sys]
git = "https://github.com/sfackler/rust-openssl"
[target.x86_64-unknown-freebsd.dependencies.openssl-sys]
git = "https://github.com/sfackler/rust-openssl"