kinetics 0.15.1

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
pub(crate) mod pipeline;
pub mod progress;
mod runner;
use crate::{
    runner::{Runnable, Runner},
    writer::Writer,
};
use runner::BuildRunner;

#[derive(clap::Args, Clone)]
pub(crate) struct BuildCommand {
    /// Comma-separated list of function names to build (if not specified, all functions will be built)
    #[arg(short, long, value_delimiter = ',')]
    pub(crate) functions: Vec<String>,
}

impl Runnable for BuildCommand {
    fn runner(&self, writer: &Writer) -> impl Runner {
        BuildRunner {
            command: self.clone(),
            writer,
        }
    }
}