rust experiment

This commit is contained in:
2024-11-15 22:03:51 -06:00
parent 2fc47b2554
commit 04e5d24cab
17 changed files with 4183 additions and 22 deletions

24
ecgsyn-rs/Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
name = "ecgsyn"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib"]
[dependencies]
itertools = "0.13.0"
js-sys = "0.3.72"
nalgebra = "0.33.2"
num-traits = "0.2.19"
ode_solvers = "0.5.0"
rand_xoshiro = "0.6.0"
realfft = "3.4.0"
wasm-bindgen = "0.2.95"
wee_alloc = "0.4.5"
[profile.release]
overflow-checks = false
opt-level = "s"
lto = true