In your Cargo.toml:
[dependencies]
varnish = "0.0.7"
# and if you are building a vmod:
varnish-sys = "0.0.7"
varnish-rs
Varnish bindings, notably to build vmods
Requirements
Rust
varnish-rs works on stable Rust and should be fine with more recent versions too. If it doesn't, plus open an issue.
Varnish
varnish-rs relies on varnish-sys (in this same repository) to generate bindings from the libvarnish headers which you will need to install, depending on you linux distribution, the related package can be named varnish-devel, varnish-dev or maybe libvarnish-dev.
Right now, the only Varnish version supported is 7.0.
Python3
At the moment, we use an embedded python script to generate the boilerplate that exposes the rust vmod code to Varnish. Make sure that python3 is in your path.
Building
If your varnish headers are installed where pkg-config can find them, it's all there is to it. If not, you can set the VARNISH_INCLUDE_PATHS environment variable to a colon-separated list of paths to search:
VARNISH_INCLUDE_PATHS=/my/custom/libpath:/my/other/custom/libpath cargo build
Versions
The varnish-rs and varnish-sys versions will work in tandem: to build version X of varnish, you need version X of varnish-sys, in turn varnish-sys will depend on a specific Varnish C library version:
| varnish-sys (rust) | libvarnish (C) |
|---|---|
| 0.0.1 to 0.0.7 | 7.0 |
You can check which Varnish version is required using the libvarnish metadata field of varnish-sys:
|