chore: enable building with latest version of rust (#14)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Closes kemitix/paperoni#13

Reviewed-on: #14
Co-authored-by: Paul Campbell <pcampbell@kemitix.net>
Co-committed-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2024-03-10 10:25:18 +00:00 committed by Paul Campbell
parent 83a1c70c68
commit c9fc2148e2
3 changed files with 6 additions and 5 deletions

View file

@ -5,7 +5,7 @@ steps:
- event: push - event: push
branch: main branch: main
- event: pull_request - event: pull_request
image: docker.io/rust:1.52.1 image: docker.io/rust:latest
commands: commands:
- apt-get install libssl-dev - apt-get install libssl-dev
- cargo build - cargo build
@ -15,6 +15,6 @@ steps:
- event: push - event: push
branch: main branch: main
- event: pull_request - event: pull_request
image: docker.io/rust:1.52.1 image: docker.io/rust:latest
commands: commands:
- cargo test - cargo test

6
Cargo.lock generated
View file

@ -1539,11 +1539,10 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
[[package]] [[package]]
name = "openssl-sys" name = "openssl-sys"
version = "0.9.62" version = "0.9.101"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa52160d45fa2e7608d504b7c3a3355afed615e6d8b627a74458634ba21b69bd" checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
dependencies = [ dependencies = [
"autocfg",
"cc", "cc",
"libc", "libc",
"pkg-config", "pkg-config",
@ -1572,6 +1571,7 @@ dependencies = [
"lazy_static", "lazy_static",
"log 0.4.14", "log 0.4.14",
"md5", "md5",
"openssl-sys",
"regex", "regex",
"surf", "surf",
"thiserror", "thiserror",

View file

@ -31,6 +31,7 @@ kuchiki = "0.8.1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
log = "0.4.14" log = "0.4.14"
md5 = "0.7.0" md5 = "0.7.0"
openssl-sys = "0.9.101"
regex = "1.5.4" regex = "1.5.4"
surf = "2.2.0" surf = "2.2.0"
thiserror = "1.0.25" thiserror = "1.0.25"