mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-21 13:08:42 +00:00
Expose crate::errors module
This commit is contained in:
parent
1cac046ffd
commit
aa4339e07d
2 changed files with 4 additions and 4 deletions
|
@ -200,7 +200,7 @@ Which provides a binary path of: `sx128x-util-x86_64-unknown-linux-gnu[.exe]`. I
|
||||||
However, we're pulling data from crates.io and the cargo manifest, both of which are _already_ trusted entities, and this is
|
However, we're pulling data from crates.io and the cargo manifest, both of which are _already_ trusted entities, and this is
|
||||||
functionally a replacement for `curl ... | bash` or `wget`-ing the same files, so, things can be improved but it's also sorta moot
|
functionally a replacement for `curl ... | bash` or `wget`-ing the same files, so, things can be improved but it's also sorta moot
|
||||||
- What do the error codes mean?
|
- What do the error codes mean?
|
||||||
- You can find a full description of errors including exit codes here: <https://docs.rs/cargo-binstall/latest/cargo_binstall/enum.BinstallError.html>
|
- You can find a full description of errors including exit codes here: <https://docs.rs/cargo-binstall/latest/cargo_binstall/errors/enum.BinstallError.html>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -6,12 +6,12 @@ use strum_macros::{Display, EnumString, EnumVariantNames};
|
||||||
pub mod drivers;
|
pub mod drivers;
|
||||||
pub use drivers::*;
|
pub use drivers::*;
|
||||||
|
|
||||||
|
pub mod errors;
|
||||||
|
pub use errors::*;
|
||||||
|
|
||||||
pub mod helpers;
|
pub mod helpers;
|
||||||
pub use helpers::*;
|
pub use helpers::*;
|
||||||
|
|
||||||
mod errors;
|
|
||||||
pub use errors::BinstallError;
|
|
||||||
|
|
||||||
pub mod bins;
|
pub mod bins;
|
||||||
pub mod fetchers;
|
pub mod fetchers;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue