cargo-binstall/crates/binstalk/src/lib.rs
Jiahao XU 0c5a65fb35
Refactor: Extract new crate binstalk-bins (#1294)
To reduce `binstalk` codegen and enable reuse of it.

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2023-08-15 21:48:42 +00:00

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};