@@ -42,7 +42,7 @@ homepage = "https://alphaville.github.io/optimization-engine/"
4242repository = " https://github.com/alphaville/optimization-engine"
4343
4444# Version of this crate (SemVer)
45- version = " 0.9.1 "
45+ version = " 0.10.0 "
4646
4747edition = " 2018"
4848
@@ -80,7 +80,7 @@ rustdoc-args = ["--html-in-header", "katex-header.html"]
8080num = " 0.4"
8181
8282# Our own stuff - L-BFGS: limited-memory BFGS directions
83- lbfgs = " 0.2 "
83+ lbfgs = " 0.3 "
8484
8585# Instant is a generic timer that works on Wasm (with wasm-bindgen)
8686instant = { version = " 0.1" }
@@ -98,10 +98,7 @@ rpmalloc = { version = "0.2", features = [
9898# epigraph of the squared Euclidean norm
9999roots = " 0.0.8"
100100
101- # Least squares solver (NOTE: ndarray must be version 0.15 - not 0.16)
102- # Bug report: https://github.com/argmin-rs/modcholesky/issues/34
103- ndarray = { version = " =0.16.1" , features = [" approx" ] }
104- modcholesky = " 0.2"
101+ ndarray = { version = " =0.17.2" , features = [" approx" ] }
105102
106103# jemallocator is an optional feature; it will only be loaded if the feature
107104# `jem` is used (i.e., if we compile with `cargo build --features jem`)
@@ -127,15 +124,15 @@ wasm = ["wasm-bindgen", "instant/wasm-bindgen", "instant/inaccurate"]
127124# --------------------------------------------------------------------------
128125# These dependencies are only used for testing
129126[dev-dependencies ]
130- unit_test_utils = " 0.1.3 "
127+ unit_test_utils = " 0.1.4 "
131128# Note: path dependencies (even dev-dependencies) cannot be local in order
132129# to publish a crate, so the following line can only be used when
133130# testing locally
134131# icasadi_test = { path = "test/icasadi_test/" }
135132# instead, use:
136- icasadi_test = " 0.0.2 "
133+ icasadi_test = " 0.0.3 "
137134# Random number generators for unit tests:
138- rand = " 0.9 "
135+ rand = " 0.10 "
139136
140137
141138# --------------------------------------------------------------------------
0 commit comments