solid-pod-rs-server 0.5.0-alpha.1

Drop-in Solid Pod server binary. Wraps solid-pod-rs with actix-web and a JSS-compatible layered config loader.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! HTTP handler submodules.
//!
//! Hosts the payment routing layer ([`pay`]) that wires the orphaned
//! `solid-pod-rs` order-book/AMM/ledger logic onto actix-web routes with
//! JSS-parity request/response JSON, and the provenance `_prov` API
//! ([`prov`], git-gated) that composes git-marks + block-trail anchors
//! (ADR-059 Phase 5).

pub mod pay;

/// Provenance `_prov` routes + the composition wiring for the LDP write hook.
/// Git-gated: it shells to `git` (commit resolution) and depends on the
/// git-only repo-path helpers.
#[cfg(feature = "git")]
pub mod prov;