diff --git a/README.md b/README.md index 6cf74ca3..ce95831d 100644 --- a/README.md +++ b/README.md @@ -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 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? - - You can find a full description of errors including exit codes here: + - You can find a full description of errors including exit codes here: --- diff --git a/src/lib.rs b/src/lib.rs index 06f84c45..1fa840b1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,12 +6,12 @@ use strum_macros::{Display, EnumString, EnumVariantNames}; pub mod drivers; pub use drivers::*; +pub mod errors; +pub use errors::*; + pub mod helpers; pub use helpers::*; -mod errors; -pub use errors::BinstallError; - pub mod bins; pub mod fetchers;