diff --git a/Cargo.toml b/Cargo.toml index fbbb63d..20e4d4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]