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

- Mv `resolver.rs` => `remote/resolver.rs` - Fix clippy warnings in `resolver.rs` on unix Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
15 lines
277 B
Rust
15 lines
277 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
|
|
pub use bytes;
|
|
|
|
pub mod download;
|
|
|
|
/// Github API client.
|
|
/// Currently only support github.com and does not support other enterprise
|
|
/// github.
|
|
#[cfg(feature = "gh-api-client")]
|
|
pub mod gh_api_client;
|
|
|
|
pub mod remote;
|
|
|
|
mod utils;
|