mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-07 19:26:36 +00:00

* docstrings for things that I was curious about * report to new stats server, with status * Arc<Self> needs a clone * fix stats url in docs * fix stats url handling
13 lines
348 B
Rust
13 lines
348 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::QUICKINSTALL_STATS_URL;
|