We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0272ae5 commit 391ec99Copy full SHA for 391ec99
crates/bitwarden-wasm-internal/src/client.rs
@@ -12,7 +12,6 @@ use crate::{vault::VaultClient, CryptoClient};
12
#[wasm_bindgen]
13
pub struct BitwardenClient(pub(crate) Rc<Client>);
14
15
-#[allow(clippy::unused_async)]
16
17
impl BitwardenClient {
18
#[wasm_bindgen(constructor)]
crates/bitwarden-wasm-internal/src/lib.rs
@@ -1,3 +1,7 @@
1
+// We define the WASM API as async so that we can use the same API for the IPC remote API.
2
+// This means that some methods will need to be async even though they do no async work.
3
+#![allow(clippy::unused_async)]
4
+
5
mod client;
6
mod crypto;
7
mod custom_types;
0 commit comments