chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 6m54s
Test / build (map[name:stable]) (push) Successful in 7m16s
Release Please / Release-plz (push) Successful in 13s

This commit is contained in:
Renovate Bot 2025-01-16 10:03:14 +00:00 committed by Paul Campbell
parent 2df1cfe11f
commit 4d546ee57c
4 changed files with 12 additions and 2 deletions

View file

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

View file

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

View file

@ -23,12 +23,16 @@ derive_more = { version = "1.0", features = [
] } ] }
http = "1.1" http = "1.1"
path-clean = "1.0" path-clean = "1.0"
native-tls = { version = "0.2", features = ["vendored"] }
reqwest = { version = "0.12", features = [ "json" ] } reqwest = { version = "0.12", features = [ "json" ] }
url = "2.5" url = "2.5"
tempfile = "3.10" tempfile = "3.10"
tokio = { version = "1.41", features = [ "sync" ] } tokio = { version = "1.41", features = [ "sync" ] }
tracing = "0.1" tracing = "0.1"
[package.metadata.cargo-machete]
ignored = ["native-tls"]
[dev-dependencies] [dev-dependencies]
assert2 = "0.3" assert2 = "0.3"
mutants = "0.0" mutants = "0.0"

View file

@ -10,6 +10,12 @@ build:
cargo test --example get cargo test --example get
cargo mutants --jobs 4 cargo mutants --jobs 4
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
doc-test: doc-test:
cargo doc cargo doc
cargo test cargo test