We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fee48d8 commit 6c70c92Copy full SHA for 6c70c92
Cargo.toml
@@ -7,7 +7,7 @@ edition = "2018"
7
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
[lib]
10
-crate-type = ['cdylib']
+crate-type = ['cdylib', 'lib']
11
12
[dependencies]
13
ammolite-math = { path = "../ammolite/ammolite-math" }
src/lib.rs
@@ -6,7 +6,7 @@ use regex::Regex;
6
use lazy_static::lazy_static;
use ammolite_math::*;
use wasm_bindgen::prelude::*;
-use mlib::*;
+use ::mlib::*;
#[derive(Default)]
pub struct SyncIO {
@@ -489,7 +489,7 @@ impl Mapp for ExampleMapp {
489
}
490
491
fn receive_event(&mut self, event: Event) {
492
- dbg!(event);
+ // dbg!(event);
493
494
495
fn flush_io(&mut self) -> IO {
0 commit comments