Skip to content

Commit b72b0e0

Browse files
committed
Cubic-Spline: Import maths feature for rust_decimal to apply square roots needed for Cholesky decomposition
1 parent 1591924 commit b72b0e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ plotly = "0.10.0" # https://docs.rs/plotly/latest/plotly/
9696
rand = "0.8.5" # https://docs.rs/rand/latest/rand/
9797
rand_distr = "0.4.3" # https://docs.rs/rand_distr/latest/rand_distr/
9898
rayon = "1.9.0" # https://docs.rs/rayon/latest/rayon/
99-
rust_decimal = "1.34.3" # https://docs.rs/rust_decimal/latest/rust_decimal/
99+
rust_decimal = { version = "1.34.3", features = ["maths"] } # https://docs.rs/rust_decimal/latest/rust_decimal/
100100
statrs = "0.17.1" # https://docs.rs/statrs/latest/statrs/
101101
thiserror = "1.0.57" # https://docs.rs/thiserror/latest/thiserror/
102102

@@ -116,7 +116,7 @@ polars = { version = "0.44.0", features = ["docs-selection"] }
116116
serde = { version = "1.0.213", features = ["derive"] }
117117

118118
# https://docs.rs/crate/pyo3/latest
119-
pyo3 = {version = "0.26.0", features = ["extension-module", "time"]}
119+
pyo3 = {version = "0.26.0", features = ["time"]}
120120

121121
## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
122122
## PYTHON BINDINGS

0 commit comments

Comments
 (0)