Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for wasm32 + web #160

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/master'
  • Loading branch information
DouglasDwyer committed Aug 26, 2024
commit 7123c4375a853ae01cc0542604fe3a43fa7080ef
2 changes: 1 addition & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@
}

impl Error {
pub(crate) fn unknown<M: Into<String>>(message: M) -> Self {

Check failure on line 93 in src/common.rs

GitHub Actions / clippy (macos-latest, stable)

associated function `unknown` is never used

Check failure on line 93 in src/common.rs

GitHub Actions / clippy (macos-latest, 1.67.1)

associated function `unknown` is never used

Check failure on line 93 in src/common.rs

GitHub Actions / clippy (ubuntu-latest, stable)

associated function `unknown` is never used

Check failure on line 93 in src/common.rs

GitHub Actions / clippy (ubuntu-latest, 1.67.1)

associated function `unknown` is never used
Error::Unknown { description: message.into() }
}
}
@@ -175,7 +175,7 @@
pub(crate) mod private {
// This is currently unused on macOS and WASM, so silence the warning which appears
// since there's no extension traits making use of this trait sealing structure.
#[allow(unreachable_pub, unused)]
#[allow(unreachable_pub, unused, dead_code)]
pub trait Sealed {}

impl Sealed for crate::Get<'_> {}
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.