mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-21 13:08:42 +00:00

To reduce `binstalk` codegen and enable reuse of it. Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
11 lines
305 B
Rust
11 lines
305 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};
|