Skip to content

Commit 742fe88

Browse files
authored
Fix missing uint hash (#610)
* Fix missing uint-hash when using http2 * Test more features in CI So that we don't miss things when these break. * Bump curl-sys version
1 parent 739b5fd commit 742fe88

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

ci/run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ if [ -z "$NO_RUN" ]; then
2929
cargo test --target $TARGET $features
3030
cargo test --target $TARGET --features static-curl $features
3131
cargo test --target $TARGET --features static-curl,protocol-ftp $features
32+
cargo test --target $TARGET --features static-curl,http2 $features
3233

3334
# Note that `-Clink-dead-code` is passed here to suppress `--gc-sections` to
3435
# help confirm that we're compiling everything necessary for curl itself.

curl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "curl-sys"
3-
version = "0.4.81+curl-8.14.1"
3+
version = "0.4.82+curl-8.14.1"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
links = "curl"
66
build = "build.rs"

curl-sys/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ fn main() {
226226
.file("curl/lib/strerror.c")
227227
.file("curl/lib/transfer.c")
228228
.file("curl/lib/uint-bset.c")
229+
.file("curl/lib/uint-hash.c")
229230
.file("curl/lib/uint-spbset.c")
230231
.file("curl/lib/uint-table.c")
231232
.file("curl/lib/url.c")

0 commit comments

Comments
 (0)