1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! # mk-lib
//!
//! `mk-lib` is a library for parsing and running tasks defined in a YAML file.
//!
//! ## Data formats
//!
//! The following data formats are supported:
//!
//! - [YAML], a self-proclaimed human-friendly configuration language that ain't
//! markup language.
//!
//! [YAML]: https://github.com/dtolnay/serde-yaml
/// Task execution cache helpers
/// The defaults module contains the default values for the library
/// The file module contains the file path handling functions
/// The schema module contains the data structures used to represent the tasks
/// Shared secret vault helpers used by the CLI and task execution
/// The version module contains the version information for the library
/// The macros module contains the custom macros used in the library
/// The utils module contains the utility functions used in the library
/// Label filter parsing and matching used by CLI commands
/// Shared task execution state types
pub use ;
/// Generate the JSON Schema for the task configuration file as a pretty-printed JSON string.