http-handle 0.0.5

A fast and lightweight Rust library for handling HTTP requests and responses.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Multi-Tenant Isolation

Tenant-scoped configuration and secrets are available in
`src/tenant_isolation.rs`.

## Components

- `TenantConfigStore` for per-tenant config snapshots.
- `SecretProvider` trait for external secret systems.
- `EnvSecretProvider` for env-var-backed secret lookup.
- `StaticSecretProvider` for local development/testing.
- `TenantScopedSecrets<P>` for tenant-restricted access.

## Example

See: `examples/tenant.rs` (run via `./scripts/example.sh tenant`).