[package]
edition = "2021"
rust-version = "1.90.0"
name = "varnish-sys"
version = "0.7.2"
authors = [
"Guillaume Quintard <guillaume.quintard@gmail.com>",
"Yuri Astrakhan <YuriAstrakhan@gmail.com>",
]
build = "build.rs"
links = "varnishapi"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust framework for creating Varnish Caching Proxy extensions"
readme = "README.md"
keywords = [
"varnish",
"vmod",
"cache",
"http",
"reverse-proxy",
]
categories = ["api-bindings"]
license = "BSD-3-Clause"
repository = "https://github.com/varnish-rs/varnish-rs"
[lib]
name = "varnish_sys"
path = "src/lib.rs"
[dependencies.memchr]
version = "2.7.4"
[dependencies.paste]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.3"
[build-dependencies.bindgen_helpers]
version = "0.6.1"
[build-dependencies.pkg-config]
version = "0.3.30"
[build-dependencies.semver]
version = "1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
manual_range_contains = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unused_qualifications = "warn"