Skip to content

Commit 031af21

Browse files
committed
Disable timely's default features
Disable timely's default features, which means disable getopts, which differential doesn't need. This avoids forcing timely's getopts feature on folks who bring in differential.
1 parent 22a30a4 commit 031af21

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ serde_derive = "1.0"
3030
abomonation = "0.7"
3131
abomonation_derive = "0.5"
3232
timely_sort="0.1.6"
33-
#timely = "0.11"
34-
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow" }
35-
#timely = { path = "../timely-dataflow/timely/" }
33+
#timely = { version = "0.11", default-features = false }
34+
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", default-features = false }
35+
#timely = { path = "../timely-dataflow/timely/", default-features = false }
3636
fnv="1.0.2"
3737

38+
[features]
39+
default = ["timely/getopts"]
40+
3841
[profile.release]
3942
opt-level = 3
4043
debug = true

0 commit comments

Comments
 (0)