1[package]
2name = "async-compat"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v0.x.y" git tag
6version = "0.2.4"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9description = "Compatibility adapter between tokio and futures"
10license = "Apache-2.0 OR MIT"
11repository = "https://github.com/smol-rs/async-compat"
12homepage = "https://github.com/smol-rs/async-compat"
13documentation = "https://docs.rs/async-compat"
14keywords = ["tokio", "futures", "convert", "context"]
15categories = ["asynchronous"]
16
17[dependencies]
18futures-core = "0.3.5"
19futures-io = "0.3.5"
20once_cell = "1.4.1"
21pin-project-lite = "0.2"
22tokio = { version = "1", default-features = false, features = ["rt"] }
23
24[dev-dependencies]
25blocking = "1"
26futures = "0.3.5"
27reqwest = "0.12"
28tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "io-std", "io-util", "macros", "net", "time"] }
29warp = "0.3"
30