byteor_actions/lib.rs
1#![deny(missing_docs)]
2#![deny(unreachable_pub, rust_2018_idioms)]
3#![forbid(unsafe_code)]
4
5//! ByteOr actions.
6//!
7//! ActionGraph side-effecting sinks (HTTP, exec, etc.).
8//! This crate is governed by `byteor-policy`.
9
10/// Error types for action stages.
11pub mod error;
12
13/// `exec:*` stage implementation.
14pub mod exec;
15
16/// `http_post:*` stage implementation.
17pub mod http_post;
18
19/// Stage resolver wiring for action stages.
20pub mod resolver;
21
22mod retry;