libhaystack 3.1.6

Rust implementation of the Haystack 4 data types, defs, filter, units, and encodings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2020 - 2024, J2 Innovations

//! Haystack Trio Encoding
//!
//! Trio ("Text Record Input/Output") is a human-friendly plain-text format
//! derived from YAML that is used for hand-authoring Haystack data.
//!
//! See <https://project-haystack.org/doc/docHaystack/Trio>

#[cfg(feature = "trio-decoding")]
pub mod decode;
#[cfg(feature = "trio-encoding")]
pub mod encode;