From 80ad12b3c6c69ee3023007f77d09a10a9b299a49 Mon Sep 17 00:00:00 2001 From: mz Date: Sun, 26 Apr 2020 01:16:43 +0300 Subject: [PATCH] update wasm-bindgen version --- .gitignore | 1 + Cargo.toml | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8f86d91..d2ab4a7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ Cargo.lock /.vscode /wasm /tests +.idea /www/node_modules /www/dist diff --git a/Cargo.toml b/Cargo.toml index 64df979..1ba6afc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cubic_spline" -version = "0.9.1" +version = "0.9.2" authors = ["mz "] edition = "2018" description = "Function that calculates curve points for cubic spline" @@ -15,7 +15,7 @@ readme = "README.md" [dependencies] #[cfg(target_arch = "wasm32")] -wasm-bindgen = "0.2.58" +wasm-bindgen = "0.2.60" [lib] diff --git a/README.md b/README.md index 555432e..d1356b2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Interpolation methods for computation of cubic spline points within the range of a discrete set of known points. -[Online documentation](https://docs.rs/cubic_spline/0.9.1/cubic_spline/) +[Online documentation](https://docs.rs/cubic_spline/0.9.2/cubic_spline/)
[Demo](https://emgyrz.github.io/cubic_spline/)