plecto-server 0.3.6

Plecto's fast path: an L7 reverse proxy / API gateway data plane (HTTP/1.1, HTTP/2, HTTP/3, TLS, routing, load balancing).
Documentation

Plecto Proxy

A self-hostable, programmable L7 reverse proxy & API gateway — in Rust, extended with WebAssembly.

Plecto Proxy pairs two complementary halves through a typed WIT contract:

  • a fast path in native Rust — connection handling, TLS termination, HTTP/1.1·2·3, routing, load balancing, and upstream management;
  • an extension plane of WebAssembly Component Model filters — the per-request decisions (auth, header/body rewriting, rate limiting, WAF, policy) written in any language, plugged in over the plecto:filter contract, hot-swapped with zero downtime.

The speed-critical path stays native Rust. Filter logic runs as a sandboxed WASM component that can touch only the capabilities the host explicitly lends it.

Status: early development. APIs and the plecto:filter contract may still change between releases.

This workspace

This crate is one member of the Plecto Proxy Cargo workspace:

  • plecto-host — the wasmtime embedding host that loads, sandboxes, and runs plecto:filter WASM components.
  • plecto-control — the control plane: declarative manifest, OCI artifact loading, filter-chain dispatch, atomic hot reload.
  • plecto-server — the fast path data plane (HTTP/1.1, HTTP/2, HTTP/3, TLS, routing, load balancing) and the plecto binary.

Links

License

Apache-2.0. See LICENSE.