Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/changelog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub mod r0_8_3 {}
/// ## (Potentially) breaking changes
///
/// MSRV has been increased to 1.56.0. Since both rustc versions are ancient, this has been deemed
/// to not be breaking enough to warrant a semver-breaking release of libloading. If you're stick
/// to not be breaking enough to warrant a semver-breaking release of libloading. If you're stuck
/// with a version of rustc older than 1.56.0, lock `libloading` dependency to `0.8.1`.
///
/// ## Non-breaking changes
Expand Down
2 changes: 1 addition & 1 deletion tests/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn make_helpers() {
static ONCE: ::std::sync::Once = ::std::sync::Once::new();
ONCE.call_once(|| {
if std::env::var_os("PRECOMPILED_TEST_HELPER").is_some() {
//I can't be asked to make rustc work in wine.
// I can't be asked to make rustc work in wine.
//I can call it myself from my linux host and then just move the file here this allows me to skip this.
eprintln!("WILL NOT COMPILE TEST HELPERS, PROGRAM WILL ASSUME THAT {} EXISTS AND WAS EXTERNALLY PRE COMPILED", lib_path().display());
return;
Expand Down