mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-06 12:10:02 +00:00
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>
This commit is contained in:
parent
4e73d0095f
commit
43973d7e86
8 changed files with 120 additions and 103 deletions
|
@ -1,11 +1,13 @@
|
|||
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
||||
|
||||
pub mod args;
|
||||
pub mod bin_util;
|
||||
pub mod entry;
|
||||
mod args;
|
||||
mod bin_util;
|
||||
mod entry;
|
||||
mod git_credentials;
|
||||
mod install_path;
|
||||
pub mod logging;
|
||||
mod manifests;
|
||||
mod logging;
|
||||
mod main_impl;
|
||||
mod signal;
|
||||
mod ui;
|
||||
|
||||
pub use main_impl::do_main;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue