cuttlefish-core 0.0.10

Cuttlefish.spec parsing and the typed job description
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parsing and validation of `Cuttlefish.spec` files.
//!
//! A spec describes one delegable job: which model runs it, what the job may
//! reach, and which proc-block implements it. See [`spec`] for the format this
//! build reads and, more importantly, for what it refuses — a spec grants
//! capabilities, so anything not fully understood is an error rather than
//! something to skip past.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub mod endpoint;
pub mod graph;
pub mod lex;
pub mod spec;