PL4TK55O7SBKFBNDO3WIRYLU5LBHRJV7BCD7SMBIVKEP2SCJGFFAC
6ECOC7L5ZARQZIDELJODXFZQK5JJKRS5C6IVC3S7V2WDBTOBX3ZAC
NSE6BLWA372T3TYEVMOKWWD725NRYQNLJGWEVXAIQ3EP6R2YNQ7QC
4RPYR65C4IEKV3INJ67NN4DOH37UDY45EE7VGF55ZKDFH75LXLJAC
NCRTU7M46QRJ4VHTNJQ6OFHCGX5M2GGTUY2J5UW3RWEQSAYOGVPAC
IQY5LHEN34KNUOZ75S5V5LZDZQCZ65LV7YXXRYJMIE6WSXMKFMXAC
G2CHQAOPRFFDCYVNDXMTB5Y5J2FBRREJPMUAJJTVQDSZE3VFLP3QC
let channel_output = channel(
Path::new("/Users/beckerawqatty/.nix-profile/bin/pijul"),
Path::new("/Users/beckerawqatty/Repos/pijul-gui/"),
);
let exe_path_string = ui.get_exe_path();
let exe_path = Path::new(exe_path_string.as_str());
let repo_path = Path::new("/Users/beckerawqatty/Repos/pijul-gui/");
let channel_output = channel(exe_path, repo_path);
let log_output = log(
Path::new("/Users/beckerawqatty/.nix-profile/bin/pijul"),
Path::new("/Users/beckerawqatty/Repos/pijul-gui/"),
);
let exe_path_string = ui.get_exe_path();
let exe_path = Path::new(exe_path_string.as_str());
let repo_path = Path::new("/Users/beckerawqatty/Repos/pijul-gui/");
let log_output = log(exe_path, repo_path);
/// A GUI frontend for the `pijul` program.
#[derive(argh::FromArgs)]
struct CLIArgs {
/// the file path of the `pijul` executable
#[argh(option, default = "\"pijul\".to_string()")]
exe_path: String,
}
[[package]]
name = "argh"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7af5ba06967ff7214ce4c7419c7d185be7ecd6cc4965a8f6e1d8ce0398aad219"
dependencies = [
"argh_derive",
"argh_shared",
]
[[package]]
name = "argh_derive"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56df0aeedf6b7a2fc67d06db35b09684c3e8da0c95f8f27685cb17e08413d87a"
dependencies = [
"argh_shared",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "argh_shared"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5693f39141bda5760ecc4111ab08da40565d1771038c4a0250f03457ec707531"
dependencies = [
"serde",
]