diff --git a/Cargo.lock b/Cargo.lock index b6544aa..1170339 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -494,6 +494,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -696,7 +705,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17ebbe97acce52d06aebed4cd4a87c0941f4b2519b59b82b4feb5bd0ce003dfd" dependencies = [ "indexmap 2.7.0", - "itertools", + "itertools 0.13.0", "ndarray", "noisy_float", "num-integer", @@ -847,9 +856,9 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "plotly" -version = "0.10.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e1ffd11c8a6ef0b730b9d3e46ad2404f79905825cb20223fa0547434a2dff54" +checksum = "0746e9faf2b051db76470fd428cbc0db792db05346dedaae4a75b16d7be503b5" dependencies = [ "dyn-clone", "erased-serde", @@ -865,9 +874,9 @@ dependencies = [ [[package]] name = "plotly_derive" -version = "0.10.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69e940d8d8db30c6f4cc37dab9aab61f4c9cc1e6efb6d18902ab88fa09c03560" +checksum = "2d683930282f098b9f524e2596e3e63483507ac499231c96127fcb166bc05d26" dependencies = [ "darling", "proc-macro2", @@ -1472,7 +1481,7 @@ dependencies = [ "dyn-clone", "hdf5-metno", "indicatif", - "itertools", + "itertools 0.14.0", "natord", "ndarray", "ndarray-csv", diff --git a/Cargo.toml b/Cargo.toml index 7fb7b76..0a8a6be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,14 +18,14 @@ dyn-clone = "1.0" # hdf5 = { version = "0.8.1" }#, features = ["blosc"]} hdf5 = { package = "hdf5-metno", git = "https://github.com/metno/hdf5-rust.git" } indicatif = "0.17.9" -itertools = "0.13.0" +itertools = "0.14.0" natord = "1.0.9" ndarray = "0.16.1" ndarray-csv = { version = "0.5.1" } ndarray-stats = "0.6.0" num-traits = "0.2.14" numpy = "0.23.0" -plotly = { version = "0.10.0", features = ["plotly_embed_js"] } +plotly = { version = "0.12.1", features = ["plotly_embed_js"] } # plotly = { git = "https://github.com/DanW97/plotly.git" } polyfit-rs = "0.2.0" pyo3 = { version = "0.23.3", features = ["extension-module"] }