mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 23:04:49 +03:00
5fb1414b69
This was broken by the changes in
aad493ab2a
. The issue was that the
channel send didn't wakeup the receiver. I'm not sure why, and I tried
a couple of different async channel implementation.
Doing the simplistic solution here works reliably.
16 lines
260 B
TOML
16 lines
260 B
TOML
[package]
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
name = "promise"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
smol = "1.2"
|
|
async-task = "4.0"
|
|
async-std = "1.4"
|
|
crossbeam = "0.7"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
lazy_static = "1.3"
|
|
flume = "0.9"
|