vane 0.9.0

A flow-based reverse proxy with multi-layer routing and programmable pipelines.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: Overview
description: Guide to internal Rust plugins source code.
icon: Telescope
---

Vane includes a suite of high-performance plugins compiled directly into the binary. They are categorized by their role in the flow lifecycle.

## Categories

| Category                              | Description                                                                       |
| :------------------------------------ | :-------------------------------------------------------------------------------- |
| [Middleware](./built-in/middleware)   | Logic units that inspect or modify traffic and pass control to the next step.     |
| [Terminators](./built-in/terminators) | Final destinations that handle the connection, send a response, or proxy traffic. |

## Registration

All built-in plugins are statically registered in `src/plugins/core/registry.rs`.