gear-program 0.1.4

gear program cli
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Logs from binaries
use std::{
    io::{BufReader, Lines, Result as IoResult},
    iter::FilterMap,
    process::ChildStderr,
};

pub type Logs = FilterMap<Lines<BufReader<ChildStderr>>, fn(IoResult<String>) -> Option<String>>;

pub mod gear_node {
    pub const IMPORTING_BLOCKS: &str = "Imported #1 ";
}

pub mod gear_program {
    pub const EX_UPLOAD_PROGRAM: &str = "Successfully submited call Gear::upload_program";
}