mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 20:48:43 +00:00

* Add new option `--disable-quick-install-stats` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Send quickinstall stats in parallel This commit also make sure'the stats is always sent for each fetcher, regardless of whether it is picked or not, to make sure that the quick-install stats collection gets the full infomration of possible targets. Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Rename option to `--disable-telemetry` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Update args.rs Co-authored-by: Félix Saparelli <felix@passcod.name> Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Update args.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Co-authored-by: Félix Saparelli <felix@passcod.name>
13 lines
349 B
Rust
13 lines
349 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
|
|
pub mod errors;
|
|
pub mod helpers;
|
|
pub mod ops;
|
|
|
|
use binstalk_bins as bins;
|
|
pub use binstalk_fetchers as fetchers;
|
|
pub use binstalk_registry as registry;
|
|
pub use binstalk_types as manifests;
|
|
pub use detect_targets::{get_desired_targets, DesiredTargets, TARGET};
|
|
|
|
pub use fetchers::QUICK_INSTALL_STATS_URL;
|