imgx 0.1.3

Fast, single-binary image proxy and transformation server built on libvips
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! imgx — image proxy and transform server. Module tree mirrors zimgx's
//! src/*.zig 1:1 for reviewability; see docs/INVARIANTS.md for the
//! behaviors that must survive the port.
//!
//! All `unsafe` is quarantined in the `imgx-vips` crate (the FFI/audit
//! boundary) — this crate forbids it entirely.
#![forbid(unsafe_code)]

pub mod cache;
pub mod config;
pub mod http;
pub mod origin;
pub mod router;
pub mod s3;
pub mod server;
pub mod transform;