chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4
This commit is contained in:
parent
955a170533
commit
4f7b5d4590
5 changed files with 23 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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:
|
||||||
|
|
11
Cargo.lock
generated
11
Cargo.lock
generated
|
@ -899,6 +899,15 @@ version = "0.1.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
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]]
|
[[package]]
|
||||||
name = "openssl-sys"
|
name = "openssl-sys"
|
||||||
version = "0.9.90"
|
version = "0.9.90"
|
||||||
|
@ -907,6 +916,7 @@ checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"libc",
|
"libc",
|
||||||
|
"openssl-src",
|
||||||
"pkg-config",
|
"pkg-config",
|
||||||
"vcpkg",
|
"vcpkg",
|
||||||
]
|
]
|
||||||
|
@ -1057,6 +1067,7 @@ dependencies = [
|
||||||
"atom_syndication",
|
"atom_syndication",
|
||||||
"bytes",
|
"bytes",
|
||||||
"clap",
|
"clap",
|
||||||
|
"native-tls",
|
||||||
"pretty_assertions",
|
"pretty_assertions",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"scraper",
|
"scraper",
|
||||||
|
|
|
@ -12,6 +12,10 @@ scraper = "0.22"
|
||||||
clap = { version = "4.5", features = ["derive"] }
|
clap = { version = "4.5", features = ["derive"] }
|
||||||
bytes = "1.6"
|
bytes = "1.6"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
native-tls = { version = "0.2", features = ["vendored"] }
|
||||||
|
|
||||||
|
[package.metadata.cargo-machete]
|
||||||
|
ignored = ["native-tls"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.10"
|
tempfile = "3.10"
|
||||||
|
|
6
justfile
6
justfile
|
@ -2,6 +2,12 @@ coverage-init:
|
||||||
cargo install grcov
|
cargo install grcov
|
||||||
rustup component add llvm-tools
|
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:
|
coverage:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|
Loading…
Add table
Reference in a new issue