1[package]
2name = "curl-sys"
3version = "0.4.41+curl-7.75.0"
4authors = ["Alex Crichton <alex@alexcrichton.com>"]
5links = "curl"
6build = "build.rs"
7license = "MIT"
8repository = "https://github.com/alexcrichton/curl-rust"
9description = "Native bindings to the libcurl library"
10documentation = "https://docs.rs/curl-sys"
11categories = ["external-ffi-bindings"]
12
13[badges]
14travis-ci = { repository = "alexcrichton/curl-rust" }
15appveyor = { repository = "alexcrichton/curl-rust" }
16
17[lib]
18name = "curl_sys"
19path = "lib.rs"
20
21[dependencies]
22libz-sys = { version = "1.0.18", default-features = false, features = ["libc"] }
23libc = "0.2.2"
24libnghttp2-sys = { optional = true, version = "0.1.3" }
25
26[dependencies.mesalink]
27version = "1.1.0-cratesio"
28optional = true
29default-features = false
30features = ["client_apis", "error_strings", "tls13", "aesgcm", "chachapoly", "x25519", "ecdh", "ecdsa", "verifier"]
31
32[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
33openssl-sys = { version = "0.9", optional = true }
34
35[target.'cfg(windows)'.dependencies]
36winapi = { version = "0.3", features = ["winsock2", "ws2def"] }
37
38[target.'cfg(target_env = "msvc")'.build-dependencies]
39vcpkg = "0.2"
40
41[build-dependencies]
42pkg-config = "0.3.3"
43cc = "1.0"
44
45[features]
46default = ["ssl"]
47ssl = ["openssl-sys"]
48http2 = ["libnghttp2-sys"]
49static-curl = []
50static-ssl = ["openssl-sys/vendored"]
51spnego = []
52force-system-lib-on-osx = []
53protocol-ftp = []
54zlib-ng-compat = ["libz-sys/zlib-ng", "static-curl"]
55upkeep_7_62_0 = []
56