mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 15:04:36 +03:00
f726a2075e
We were only using block_on from it, which we can call from the underlying async_io crate. Notably, removing async_std from the deps avoids async-global-executor being pulled in and spawning nproc threads that are never used by wezterm.
15 lines
253 B
TOML
15 lines
253 B
TOML
[package]
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
name = "promise"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
async-task = "4.0"
|
|
async-executor = "1.4"
|
|
async-io = "1.10"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
lazy_static = "1.4"
|
|
flume = "0.10"
|