sapling/eden/scm/lib/cpython-async/Cargo.toml
Jun Wu 1753f5403d lib: upgrade most crates to tokio 1.0
Summary:
Migrate most crates to tokio 1.0. The exception is edenfs-client, which has
some dependencies on `//common/rust/shed/fbthrift_ext` and seems non-trivial
to upgrade. It creates a separate tokio runtime so it shouldn't be affected
feature-wise.

Reviewed By: singhsrb

Differential Revision: D26152862

fbshipit-source-id: c84c43b1b1423eabe3543bccde34cc489b7805be
2021-01-29 18:18:17 -08:00

20 lines
414 B
TOML

[package]
name = "cpython-async"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1"
async-runtime = { path = "../async-runtime" }
cpython-ext = { path = "../cpython-ext", default-features = false }
futures = "0.3"
itertools = "0.8"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
[features]
default = ["python3"]
python2 = ["cpython-ext/python2"]
python3 = ["cpython-ext/python3"]