sapling/eden/scm/lib/async-runtime/Cargo.toml
Stefan Filip 72db1cbedb async-runtime: crate for async job scheduling from blocking threads
Summary:
We have a thread blocking application. We have async libraries. This crate
provides common utilities for communicating between the blocking world and the
async world. It is intended to be a guide so that not all developers have to
get in depth understanding of Tokio in order to use async functions.

Reviewed By: quark-zju, xavierd

Differential Revision: D23222876

fbshipit-source-id: b9a61795bc917bfc664c9d6da95c9e5e2d506c79
2020-08-26 00:57:32 -07:00

12 lines
263 B
TOML

[package]
name = "async-runtime"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
[dependencies]
futures = "0.3"
once_cell = "1.0.2"
parking_lot = "0.10"
tokio = { version = "0.2.13", features = ["full"] }