Fixes for release (#237)

* Fixes for release
* add new test
* Remove change applied in development branch
* Only add dependency for wasm32
* Update ci.yml

Co-authored-by: Luis Moreno <morenol@users.noreply.github.com>
Co-authored-by: Lorenzo <tunedconsulting@gmail.com>
This commit is contained in:
morenol
2022-11-08 11:07:14 -05:00
committed by GitHub
parent 46b6285d05
commit 9eaae9ef35
3 changed files with 18 additions and 6 deletions
+1 -2
View File
@@ -26,7 +26,6 @@ ndarray = { version = "0.15", optional = true }
num-traits = "0.2.12"
num = "0.4"
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
getrandom = "*"
rand_distr = { version = "0.4", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
@@ -40,7 +39,7 @@ std_rand = ["rand/std_rng", "rand/std"]
js = ["getrandom/js"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "*", features = ["js"] }
getrandom = { version = "*", optional = true }
[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dev-dependencies]
wasm-bindgen-test = "0.3"