1[package]
2name = "blocking"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v1.x.y" git tag
6version = "1.5.1"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9rust-version = "1.61"
10description = "A thread pool for isolating blocking I/O in async programs"
11license = "Apache-2.0 OR MIT"
12repository = "https://github.com/smol-rs/blocking"
13keywords = ["async", "file", "stdio", "stdin", "process"]
14categories = ["asynchronous", "concurrency"]
15exclude = ["/.*"]
16
17[dependencies]
18async-channel = "2.0.0"
19async-task = "4.0.2"
20fastrand = "2.0.0"
21futures-io = { version = "0.3.28", default-features = false, features = ["std"] }
22futures-lite = { version = "2.0.0", default-features = false }
23piper = "0.2.0"
24tracing = { version = "0.1.37", default-features = false }
25
26[target.'cfg(not(target_family = "wasm"))'.dependencies]
27async-lock = "3.0.0"
28
29[dev-dependencies]
30futures-lite = "2.0.0"
31