chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4
Some checks failed
Test / build (map[name:stable]) (push) Successful in 1m5s
Test / build (map[name:nightly]) (push) Successful in 1m18s
Release Please / Release-plz (push) Failing after 5s
Release Please / Docker image (push) Failing after 6s

This commit is contained in:
Renovate Bot 2025-01-16 10:03:20 +00:00 committed by Paul Campbell
parent 955a170533
commit 4f7b5d4590
5 changed files with 23 additions and 2 deletions

View file

@ -19,7 +19,7 @@ jobs:
container:
image:
git.kemitix.net/kemitix/rust:v3.1.0
git.kemitix.net/kemitix/rust:v4.0.1
steps:
- name: Checkout repository

View file

@ -18,7 +18,7 @@ jobs:
container:
image:
git.kemitix.net/kemitix/rust:v3.1.0
git.kemitix.net/kemitix/rust:v4.0.1
strategy:
matrix:

11
Cargo.lock generated
View file

@ -899,6 +899,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.28.2+1.1.1w"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb1830e20a48a975ca898ca8c1d036a36c3c6c5cb7dabc1c216706587857920f"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.90"
@ -907,6 +916,7 @@ checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
@ -1057,6 +1067,7 @@ dependencies = [
"atom_syndication",
"bytes",
"clap",
"native-tls",
"pretty_assertions",
"reqwest",
"scraper",

View file

@ -12,6 +12,10 @@ scraper = "0.22"
clap = { version = "4.5", features = ["derive"] }
bytes = "1.6"
anyhow = "1.0"
native-tls = { version = "0.2", features = ["vendored"] }
[package.metadata.cargo-machete]
ignored = ["native-tls"]
[dev-dependencies]
tempfile = "3.10"

View file

@ -2,6 +2,12 @@ coverage-init:
cargo install grcov
rustup component add llvm-tools
test-in-docker:
docker run --rm -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest cargo test
shell-in-docker:
docker run --rm -it -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest bash
coverage:
#!/usr/bin/env bash
set -e