Skip to content

Commit

Permalink
update for varnish 7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gquintard committed Mar 19, 2024
1 parent 73ae725 commit 297c0fc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
toolchain: stable
- run: |
sudo apt-get install -y curl
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish74/script.deb.sh | sudo bash
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish75/script.deb.sh | sudo bash
sudo apt-get install varnish-dev
- run: |
cargo doc
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "vmod_reqwest"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
license = "BSD-3-Clause"

[build-dependencies]
varnish = "0.0.17"
varnish = "0.0.18"

[dependencies]
varnish = "0.0.17"
varnish-sys = "0.0.17"
varnish = "0.0.18"
varnish-sys = "0.0.18"
regex = "1.5"
lru = "0.7.1"
bytes = "1.1.0"
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
FROM rust:1.73-bookworm

WORKDIR /vmod_reqwest
ARG VMOD_REQWEST_VERSION=0.0.10
ARG VMOD_REQWEST_VERSION=0.0.11
ARG RELEASE_URL=https://github.com/gquintard/vmod_reqwest/archive/refs/tags/v${VMOD_REQWEST_VERSION}.tar.gz
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse

RUN set -e; \
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish74/script.deb.sh | bash; \
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish75/script.deb.sh | bash; \
apt-get install -y varnish-dev clang libssl-dev; \
curl -Lo dist.tar.gz ${RELEASE_URL}; \
tar xavf dist.tar.gz --strip-components=1; \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Don't hesitate to open github issues if something is unclear or impractical. You

| vmod-reqwest | varnish |
| :----------- | :-----: |
| 0.0.11 | 7.5 |
| 0.0.10 | 7.4 |
| 0.0.9 | 7.3 |
| 0.0.8 | 7.3 |
Expand Down

0 comments on commit 297c0fc

Please sign in to comment.