1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-17 17:57:28 +03:00
wezterm/promise/Cargo.toml
Wez Furlong f726a2075e deps: remove async-std dep
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.
2022-11-01 07:05:33 -07:00

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"