Skip to content

Commit f689c5c

Browse files
authored
Merge branch 'alexcrichton:main' into master
2 parents 9da634e + 433fbce commit f689c5c

33 files changed

+1387
-406
lines changed

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: cargo
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "08:00"
8+
open-pull-requests-limit: 10

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI
22
on:
33
push:
4-
branches: [master]
4+
branches: [main]
55
pull_request:
6-
branches: [master]
6+
branches: [main]
77

88
jobs:
99
test:
@@ -134,4 +134,4 @@ jobs:
134134
git add .
135135
git -c user.name='ci' -c user.email='ci' commit -m init
136136
git push -f -q https://git:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages
137-
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
137+
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
Cargo.lock
22
target/
3+
.idea/

Cargo.toml

+24-3
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
[package]
22
name = "curl"
3-
version = "0.4.29"
3+
version = "0.4.40"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT"
66
repository = "https://github.com/alexcrichton/curl-rust"
77
homepage = "https://github.com/alexcrichton/curl-rust"
88
documentation = "https://docs.rs/curl"
99
description = "Rust bindings to libcurl for making HTTP requests"
1010
categories = ["api-bindings", "web-programming::http-client"]
11+
readme = "README.md"
1112
autotests = true
13+
edition = "2018"
1214

1315
[badges]
1416
travis-ci = { repository = "alexcrichton/curl-rust" }
1517
appveyor = { repository = "alexcrichton/curl-rust" }
1618

1719
[dependencies]
1820
libc = "0.2.42"
19-
curl-sys = { path = "curl-sys", version = "0.4.31", default-features = false }
20-
socket2 = "0.3.7"
21+
curl-sys = { path = "curl-sys", version = "0.4.50", default-features = false }
22+
socket2 = "0.4.0"
2123

2224
# Unix platforms use OpenSSL for now to provide SSL functionality
2325
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
@@ -31,6 +33,7 @@ winapi = { version = '0.3', features = ['libloaderapi', 'wincrypt'] }
3133
[dev-dependencies]
3234
mio = "0.6"
3335
mio-extras = "2.0.3"
36+
anyhow = "1.0.31"
3437

3538
[workspace]
3639
members = ["systest"]
@@ -45,7 +48,25 @@ static-curl = ["curl-sys/static-curl"]
4548
static-ssl = ["curl-sys/static-ssl"]
4649
force-system-lib-on-osx = ['curl-sys/force-system-lib-on-osx']
4750
protocol-ftp = ["curl-sys/protocol-ftp"]
51+
zlib-ng-compat = ["curl-sys/zlib-ng-compat", "static-curl"]
52+
upkeep_7_62_0 = ["curl-sys/upkeep_7_62_0"]
53+
poll_7_68_0 = ["curl-sys/poll_7_68_0"]
4854

4955
[[test]]
5056
name = "atexit"
5157
harness = false
58+
59+
[[example]]
60+
name = "ssl_proxy"
61+
path = "examples/ssl_proxy.rs"
62+
required-features = ["ssl"]
63+
64+
[[example]]
65+
name = "ssl_cert_blob"
66+
path = "examples/ssl_cert_blob.rs"
67+
required-features = ["ssl"]
68+
69+
[[example]]
70+
name = "aws_sigv4"
71+
path = "examples/aws_sigv4.rs"
72+
required-features = ["static-curl", "ssl"]

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# curl-rust
22

3-
libcurl bindings for Rust
3+
[libcurl] bindings for Rust
44

5-
[Documentation](https://docs.rs/curl)
5+
[![Latest Version](https://img.shields.io/crates/v/curl.svg)](https://crates.io/crates/curl)
6+
[![Documentation](https://docs.rs/curl/badge.svg)](https://docs.rs/curl)
7+
[![License](https://img.shields.io/github/license/alexcrichton/curl-rust.svg)](LICENSE)
8+
[![Build](https://github.com/alexcrichton/curl-rust/workflows/CI/badge.svg)](https://github.com/alexcrichton/curl-rust/actions)
69

710
## Quick Start
811

@@ -125,6 +128,8 @@ with various Cargo features:
125128
- `static-curl`: Use a bundled libcurl version and statically link to it. Disabled by default.
126129
- `static-ssl`: Use a bundled OpenSSL version and statically link to it. Only applies on platforms that use OpenSSL. Disabled by default.
127130
- `spnego`: Enable SPNEGO support. Disabled by default.
131+
- `upkeep_7_62_0`: Enable curl_easy_upkeep() support, introduced in curl 7.62.0. Disabled by default.
132+
- `poll_7_68_0`: Enable curl_multi_poll()/curl_multi_wakeup() support, requires curl 7.68.0 or later. Disabled by default.
128133

129134
## Version Support
130135

@@ -145,8 +150,7 @@ If you encounter the following error message:
145150
That means most likely, that curl was linked against `libcurl-nss.so` due to
146151
installed libcurl NSS development files, and that the required library
147152
`libnsspem.so` is missing. See also the curl man page: "If curl is built
148-
against the NSS SSL library, the NSS PEM PKCS#11 module (libnsspem.so) needs to
149-
be available for this option to work properly."
153+
against the NSS SSL library, the NSS PEM PKCS#11 module (`libnsspem.so`) needs to be available for this option to work properly."
150154

151155
In order to avoid this failure you can either
152156

@@ -156,10 +160,12 @@ In order to avoid this failure you can either
156160

157161
## License
158162

159-
The `curl-rust` crate is licensed under the MIT license, see `LICENSE` for more
163+
The `curl-rust` crate is licensed under the MIT license, see [`LICENSE`](LICENSE) for more
160164
details.
161165

162166

167+
[libcurl]: https://curl.haxx.se/libcurl/
168+
[MesaLink]: https://mesalink.io/
163169
[OpenSSL]: https://www.openssl.org/
164170
[Rustls]: https://github.com/ctz/rustls
165171
[Schannel]: https://docs.microsoft.com/en-us/windows/win32/com/schannel

build.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
use std::env;
2-
use std::str::FromStr;
32

43
fn main() {
54
// OpenSSL >= 1.1.0 can be initialized concurrently and is initialized correctly by libcurl.
65
// <= 1.0.2 need locking callbacks, which are provided by openssl_sys::init().
7-
let use_openssl = match env::var("DEP_OPENSSL_VERSION") {
8-
Ok(ver) => {
9-
let ver = u32::from_str(&ver).unwrap();
10-
if ver < 110 {
6+
let use_openssl = match env::var("DEP_OPENSSL_VERSION_NUMBER") {
7+
Ok(version) => {
8+
let version = u64::from_str_radix(&version, 16).unwrap();
9+
if version < 0x1_01_00_00_0 {
1110
println!("cargo:rustc-cfg=need_openssl_init");
1211
}
1312
true

ci/Dockerfile-linux64-curl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:14.04
1+
FROM ubuntu:16.04
22

33
RUN apt-get update
44
RUN apt-get install -y --no-install-recommends \

ci/run.sh

+6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ if [ -z "$NO_RUN" ]; then
1111
cargo test --target $TARGET
1212
cargo test --target $TARGET --features static-curl
1313
cargo test --target $TARGET --features static-curl,protocol-ftp
14+
15+
# Note that `-Clink-dead-code` is passed here to suppress `--gc-sections` to
16+
# help confirm that we're compiling everything necessary for curl itself.
17+
RUSTFLAGS=-Clink-dead-code \
1418
cargo run --manifest-path systest/Cargo.toml --target $TARGET
19+
RUSTFLAGS=-Clink-dead-code \
1520
cargo run --manifest-path systest/Cargo.toml --target $TARGET --features curl-sys/static-curl,curl-sys/protocol-ftp
21+
1622
cargo doc --no-deps --target $TARGET
1723
cargo doc --no-deps -p curl-sys --target $TARGET
1824
fi

curl-sys/Cargo.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "curl-sys"
3-
version = "0.4.31+curl-7.70.0"
3+
version = "0.4.50+curl-7.79.1"
44
authors = ["Alex Crichton <[email protected]>"]
55
links = "curl"
66
build = "build.rs"
@@ -9,6 +9,7 @@ repository = "https://github.com/alexcrichton/curl-rust"
99
description = "Native bindings to the libcurl library"
1010
documentation = "https://docs.rs/curl-sys"
1111
categories = ["external-ffi-bindings"]
12+
edition = "2018"
1213

1314
[badges]
1415
travis-ci = { repository = "alexcrichton/curl-rust" }
@@ -19,7 +20,7 @@ name = "curl_sys"
1920
path = "lib.rs"
2021

2122
[dependencies]
22-
libz-sys = "1.0.18"
23+
libz-sys = { version = "1.0.18", default-features = false, features = ["libc"] }
2324
libc = "0.2.2"
2425
libnghttp2-sys = { optional = true, version = "0.1.3" }
2526

@@ -51,3 +52,6 @@ static-ssl = ["openssl-sys/vendored"]
5152
spnego = []
5253
force-system-lib-on-osx = []
5354
protocol-ftp = []
55+
zlib-ng-compat = ["libz-sys/zlib-ng", "static-curl"]
56+
upkeep_7_62_0 = []
57+
poll_7_68_0 = []

0 commit comments

Comments
 (0)