cargo-binstall/crates/bin/src/lib.rs
Jiahao XU 43973d7e86
Refactor cargo-binstall (#1302)
- Move implementation of `main` into the library part of
   `cargo-binstall` to speedup codegen.
 - Move  `manifests.rs` into `binstalk-manifests`

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2023-08-18 01:59:48 +00:00

13 lines
196 B
Rust

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
mod args;
mod bin_util;
mod entry;
mod git_credentials;
mod install_path;
mod logging;
mod main_impl;
mod signal;
mod ui;
pub use main_impl::do_main;