Skip to content

Commit

Permalink
fix(deps): update bump minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 8, 2024
1 parent 1d18d4a commit dd64e7d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions curlz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0-only"
include = ["src/**/*", "LICENSE", "*.md"]

[dependencies]
env_logger = "0.10"
env_logger = "0.11"
log = "0.4"
clap = { version = "4.2", features = ["derive", "std", "cargo", "usage", "help"] }
#clap_complete = "4.1"
Expand All @@ -18,21 +18,21 @@ serde_yaml = "0.9"
dotenvy = { version = "0.15" }
anyhow = "1.0"
convert_case = "0.6"
dialoguer = "0.10"
dialoguer = "0.11"
filenamify = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
humantime = "2.1"

minijinja = "0.32"
minijinja = "0.34"

jsonwebtoken = "8.3"
serde_json = { version = "1.0", features = ["preserve_order"] }
base64 = "0.21"
base64 = "0.22"

## experimental
pest = { version = "2.6", optional = true }
pest_derive = { version = "2.6", optional = true }
minijinja-stack-ref = "0.32"
minijinja-stack-ref = "0.34"

[features]
"x-http-lang" = ['dep:pest', 'dep:pest_derive']
Expand All @@ -42,8 +42,8 @@ insta = "1"
tempfile = "3.5"
assert_cmd = "2.0"
predicates = "3.0"
rstest = "0.17"
wiremock = "0.5"
rstest = "0.23"
wiremock = "0.6"
tokio = { version = "1", features = ["rt", "macros"], default-features = false }
indoc = "2"
pretty_assertions = "1"
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM curlimages/curl:8.00.1 as builder
FROM curlimages/curl:8.11.0 as builder

LABEL org.opencontainers.image.source https://github.com/curlz-rs/curlz
ARG CURLZ_RELEASE_TAG=v0.1.0-alpha.11
Expand All @@ -13,7 +13,7 @@ RUN curl ${CURLZ_GIT_REPO}/releases/download/${CURLZ_RELEASE_TAG}/curlz-${CURLZ_
tar xzfv /tmp/curlz.tar.gz curlz && \
chmod a+x /tmp/curlz

FROM curlimages/curl:8.00.1
FROM curlimages/curl:8.11.0

COPY --from=builder "/tmp/curlz" "/usr/bin/curlz"
USER curl_user
Expand Down

0 comments on commit dd64e7d

Please sign in to comment.