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 afc5316 commit 4f8c721Copy full SHA for 4f8c721
minimal_wasm/Cargo.toml
@@ -11,6 +11,7 @@ crate-type = ["cdylib"]
11
[dependencies]
12
wasm-bindgen = "0.2"
13
console_error_panic_hook = "0.1"
14
+rui = { path = ".." }
15
16
[dependencies.web-sys]
17
version = "0.3"
minimal_wasm/src/lib.rs
@@ -1,5 +1,9 @@
1
use wasm_bindgen::prelude::*;
2
3
+// Import rui but don't use it - just to see if it compiles
4
+#[allow(unused_imports)]
5
+use rui::*;
6
+
7
// Import the `console.log` function from the `console` module
8
#[wasm_bindgen]
9
extern "C" {
0 commit comments