Skip to content

Commit 3be98e8

Browse files
Kobzolspirali
authored andcommitted
Use highs by default when compiling tako
1 parent 50cd7b5 commit 3be98e8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

crates/hyperqueue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ crossterm = { version = "0.29", features = ["event-stream"], optional = true }
5757
unicode-width = { version = "0.2", optional = true }
5858

5959
# Tako
60-
tako = { path = "../tako" }
60+
tako = { path = "../tako", default-features = false }
6161

6262
# Optional dependencies
6363
jemallocator = { version = "0.5", optional = true }

crates/pyhq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ crate-type = ["cdylib"]
1818

1919
[dependencies]
2020
hyperqueue = { path = "../hyperqueue", default-features = false, features = ["jemalloc"] }
21-
tako = { path = "../tako" }
21+
tako = { path = "../tako", default-features = false }
2222

2323
serde = { workspace = true }
2424
tokio = { workspace = true }

crates/tako/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ edition.workspace = true
66
rust-version.workspace = true
77

88
[features]
9-
default = []
9+
# The default feature is set for convenience, so that tako can be compiled without specifying
10+
# any features. It also helps with IDE integration.
11+
default = ["highs"]
1012
highs = ["dep:highs"]
1113
microlp = ["dep:microlp"]
1214

0 commit comments

Comments
 (0)