[package]
edition = "2021"
rust-version = "1.90.0"
name = "varnish"
version = "0.6.0"
authors = [
"Guillaume Quintard <guillaume.quintard@gmail.com>",
"Yuri Astrakhan <YuriAstrakhan@gmail.com>",
]
build = false
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"
[features]
default = []
ffi = []
[lib]
name = "varnish"
path = "src/lib.rs"
[[test]]
name = "compile"
path = "tests/compile.rs"
[dependencies.glob]
version = "0.3.1"
[dependencies.varnish-macros]
version = "0.6.0"
[dependencies.varnish-sys]
version = "0.6.0"
[dev-dependencies.trybuild]
version = "1.0"
[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"