Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 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 @@ -17,22 +17,22 @@ serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
dotenvy = { version = "0.15" }
anyhow = "1.0"
convert_case = "0.6"
dialoguer = "0.10"
convert_case = "0.10"
dialoguer = "0.12"
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.26"
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.17.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.17.0

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