Skip to content

Commit

Permalink
Enable futures feature on indicatif
Browse files Browse the repository at this point in the history
Summary: This adds the super useful `wrap_stream` to progress bars, which make creating progress bars for things like "execute this query for each item in this vector and do a progress bar while you're doing it" *way* easier to express. There's an argument here about dependency creep, but we do already have `rayon` enabled on `indicatif`.

Reviewed By: edward-shen

Differential Revision: D62575936

fbshipit-source-id: 33c1f500a6fd253059271d40255084eea53a03a7
  • Loading branch information
abesto authored and facebook-github-bot committed Sep 12, 2024
1 parent f19be5c commit b3f62f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion below/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ common = { package = "below-common", version = "0.8.1", path = "common" }
config = { package = "below-config", version = "0.8.1", path = "config" }
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
dump = { package = "below-dump", version = "0.8.1", path = "dump" }
indicatif = { version = "0.17.6", features = ["improved_unicode", "rayon", "tokio"] }
indicatif = { version = "0.17.6", features = ["futures", "improved_unicode", "rayon", "tokio"] }
libbpf-rs = { version = "0.24.4", default-features = false }
libc = "0.2.139"
model = { package = "below-model", version = "0.8.1", path = "model" }
Expand Down

0 comments on commit b3f62f8

Please sign in to comment.