split euler and maxwell to separate crates

This commit is contained in:
Magnus Ulimoen
2020-05-02 00:22:59 +02:00
parent 52bd4f3f8f
commit a1acf00c5a
17 changed files with 202 additions and 113 deletions

View File

@@ -14,3 +14,5 @@ console_error_panic_hook = "0.1.6"
wee_alloc = "0.4.5"
sbp = { path = "../sbp", features = ["f32"] }
ndarray = "0.13.0"
euler = { path = "../euler" }
maxwell = { path = "../maxwell" }

View File

@@ -1,6 +1,8 @@
use wasm_bindgen::prelude::*;
use sbp::{euler, maxwell, operators};
use euler;
use maxwell;
use sbp::operators;
#[cfg(feature = "wee_alloc")]
#[global_allocator]