Skip to content

Commit

Permalink
Merge pull request #355 from chuoru/master
Browse files Browse the repository at this point in the history
🐛 Modify cargo.toml for windows environments
  • Loading branch information
alphaville authored Aug 14, 2024
2 parents 6e46848 + 1e3bb58 commit c9cc773
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@ rpmalloc = { version = "0.2", features = [
"statistics",
], optional = true }

# jemallocator is an optional feature; it will only be loaded if the feature
# `jem` is used (i.e., if we compile with `cargo build --features jem`)
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version = "0.5", optional = true }


# computation of roots of cubic equation needed for the projection on the
# epigraph of the squared Euclidean norm
roots = "0.0.8"
Expand All @@ -108,6 +102,10 @@ roots = "0.0.8"
ndarray = { version = "0.15", features = ["approx"] }
modcholesky = "0.1"

# jemallocator is an optional feature; it will only be loaded if the feature
# `jem` is used (i.e., if we compile with `cargo build --features jem`)
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version = "0.5", optional = true }

# --------------------------------------------------------------------------
# F.E.A.T.U.R.E.S.
Expand Down

0 comments on commit c9cc773

Please sign in to comment.