distributed_cli 4.0.0

The `distributed` CLI for Distributed applications: contracts check/accept, scaffold projects, describe manifests, compile clients, and render schema artifacts. Also a library so other CLIs (e.g. hops) can mount its commands.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Compiler-owned projection-delta contracts.
//!
//! `wire` mirrors the frozen Rust response protocol exactly. `preview` is a
//! separate executable artifact IR whose values remain scoped input/preset
//! expressions until the JavaScript command runtime prepares a command.

mod preview;
mod wire;

pub(crate) use preview::{compile_command_preview, CompiledCommandProjection};
pub(crate) use wire::PROJECTION_DELTA_WIRE_VERSION;