From 4d546ee57c73aca31278c78a8cc85a1aa86bbb3d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 16 Jan 2025 10:03:14 +0000 Subject: [PATCH] chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4 --- .forgejo/workflows/push-main.yml | 2 +- .forgejo/workflows/push-next.yml | 2 +- Cargo.toml | 4 ++++ justfile | 6 ++++++ 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/push-main.yml b/.forgejo/workflows/push-main.yml index 9693119..33f6537 100644 --- a/.forgejo/workflows/push-main.yml +++ b/.forgejo/workflows/push-main.yml @@ -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 diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index 39302a8..602c7a9 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -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: diff --git a/Cargo.toml b/Cargo.toml index 0cde7b8..9bcfbd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,16 @@ derive_more = { version = "1.0", features = [ ] } http = "1.1" path-clean = "1.0" +native-tls = { version = "0.2", features = ["vendored"] } reqwest = { version = "0.12", features = [ "json" ] } url = "2.5" tempfile = "3.10" tokio = { version = "1.41", features = [ "sync" ] } tracing = "0.1" +[package.metadata.cargo-machete] +ignored = ["native-tls"] + [dev-dependencies] assert2 = "0.3" mutants = "0.0" diff --git a/justfile b/justfile index e4b45f5..63a0f91 100644 --- a/justfile +++ b/justfile @@ -10,6 +10,12 @@ build: cargo test --example get 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: cargo doc cargo test