Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 29, 2020
1 parent c7bad34 commit 44b8221
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 68 deletions.
67 changes: 3 additions & 64 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pretty-cli = ["structopt",
"ctrlc",
"prodash/localtime",
"env_logger",
"smol"]
"futures-lite"]
lean-cli = ["argh", "git-features/progress-log", "env_logger"]

prodash-line-renderer-crossterm = ["prodash-line-renderer", "prodash/line-renderer-crossterm", "git-features/progress-prodash", "atty", "crosstermion"]
Expand All @@ -64,10 +64,10 @@ git-features = { version = "^0.2.0", path = "git-features" }
structopt = { version = "0.3.14", optional = true }
argh = { version = "0.1.3", optional = true, default-features = false }
prodash = { version = "7.0.2", optional = true, default-features = false }
smol = { version = "0.1.18", optional = true, default-features = false }
atty = { version = "0.2.14", optional = true, default-features = false }
env_logger = { version = "0.7.1", optional = true, default-features = false, features = ["humantime", "termcolor", "atty"] }
crosstermion = { version = "0.2.0", optional = true, default-features = false }
crosstermion = { version = "0.3.0", optional = true, default-features = false }
futures-lite = { version = "0.1.10", optional = true, default-features = false }
ctrlc = { version = "3.1.4", optional = true, default-features = false, features = ['termination'] }

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion src/plumbing/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ fn prepare_and_run<T: Send + 'static>(
let ui_handle = std::thread::spawn({
let tx = tx.clone();
move || {
smol::run(render_tui);
futures_lite::future::block_on(render_tui);
tx.send(Event::UIDone).ok();
}
});
Expand Down

0 comments on commit 44b8221

Please sign in to comment.