1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-28 01:06:37 +03:00
wezterm/promise/Cargo.toml
Wez Furlong aad493ab2a simplify promise crate
Implement Future and Promise in terms of a bounded channel of size 1.
2020-10-05 08:50:29 -07:00

15 lines
246 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"