Skip to content

Commit

Permalink
chore: do not bundle scip on docs.rs (#81)
Browse files Browse the repository at this point in the history
* chore: do not bundle scip on docs.rs

* docs: add comment on docs.rs features
  • Loading branch information
KnorpelSenf authored Jan 8, 2025
1 parent a8112da commit 5048ac8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ harness = false
[package.metadata.docs.rs]
# Display the documentation for all solvers on docs.rs
all-features = false
features = [ "all_default_solvers" ]
# Use almost the same as all_default_solvers. Similarly, cplex-rs is not
# included because it is incompatible with lpsolve. Additionally,
# russcip/bundled is not included because network access is blocked on docs.rs.
features = ["coin_cbc", "microlp", "lpsolve", "highs", "russcip", "lp-solvers", "clarabel"]
default-target = "x86_64-unknown-linux-gnu"
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "docsrs"]

0 comments on commit 5048ac8

Please sign in to comment.