flowey/lib.rs
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 53 54 55 56 57
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#![expect(missing_docs)]
//! The user-facing flowey API.
//!
//! Relying on `flowey_core` directly is not advised, as many APIs exposed at
//! that level are only supposed to be used by flowey _infrastructure_ (e.g: in
//! `flowey_cli`).
/// Types and traits for implementing flowey nodes.
pub mod node {
pub mod prelude {
// include all user-facing types in the prelude
pub use flowey_core::node::user_facing::*;
// ...in addition, export various types/traits that node impls are
// almost certainly going to require
pub use anyhow;
pub use anyhow::Context;
pub use fs_err;
pub use log;
pub use serde::Deserialize;
pub use serde::Serialize;
pub use std::path::Path;
pub use std::path::PathBuf;
/// Extension trait to streamline working with [`Path`] in flowey.
pub trait FloweyPathExt {
/// Alias for [`std::path::absolute`]
fn absolute(&self) -> std::io::Result<PathBuf>;
}
impl<T> FloweyPathExt for T
where
T: AsRef<Path>,
{
fn absolute(&self) -> std::io::Result<PathBuf> {
std::path::absolute(self)
}
}
}
}
/// Types and traits for implementing flowey pipelines.
pub mod pipeline {
pub mod prelude {
pub use flowey_core::pipeline::user_facing::*;
}
}
/// Types and traits for implementing flowey patch functions.
pub mod patch {
pub use flowey_core::patch::*;
pub use flowey_core::register_patch;
}