diff --git a/.forgejo/workflows/push-main.yml b/.forgejo/workflows/push-main.yml index c073b30..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.0.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 c260dfe..8432b51 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.0.0 + git.kemitix.net/kemitix/rust:v4.0.1 strategy: matrix: diff --git a/Cargo.toml b/Cargo.toml index 71f727f..3e76d18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,7 @@ inquire = "0.7" kameo = "0.13" # kxio = { path = "../kxio/" } kxio = "5.0" +native-tls = { version = "0.2", features = ["vendored"] } rand = "0.8" reqwest = { version = "0.12", features = ["multipart", "stream"] } serde = { version = "1.0", features = ["derive"] } @@ -32,6 +33,9 @@ tracing = "0.1" tracing-subscriber = "0.3" console-subscriber = "0.4" +[package.metadata.cargo-machete] +ignored = ["native-tls"] + [dev-dependencies] assert2 = "0.3" http = "1.2" diff --git a/justfile b/justfile index 9b640ff..09f5258 100644 --- a/justfile +++ b/justfile @@ -13,6 +13,12 @@ build: # cargo test # cargo doc # cargo test --example get + +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 build-mutations: build mutations