blocking/Cargo.toml

27 lines
839 B
TOML
Raw Permalink Normal View History

2020-05-09 19:06:27 +00:00
[package]
name = "blocking"
2021-11-10 10:24:38 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.6.0"
2020-05-09 19:06:27 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
2024-01-06 21:45:02 +00:00
edition = "2021"
rust-version = "1.63"
2020-07-21 18:41:03 +00:00
description = "A thread pool for isolating blocking I/O in async programs"
2020-05-09 19:06:27 +00:00
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/blocking"
2020-05-09 19:06:27 +00:00
keywords = ["async", "file", "stdio", "stdin", "process"]
categories = ["asynchronous", "concurrency"]
2022-01-08 13:35:02 +00:00
exclude = ["/.*"]
2020-05-09 19:06:27 +00:00
[dependencies]
async-channel = "2.0.0"
2020-10-05 10:05:13 +00:00
async-task = "4.0.2"
2023-04-30 19:35:09 +00:00
futures-io = { version = "0.3.28", default-features = false, features = ["std"] }
futures-lite = { version = "2.0.0", default-features = false }
2023-05-07 15:44:46 +00:00
piper = "0.2.0"
2024-04-22 00:04:01 +00:00
tracing = { version = "0.1.37", default-features = false, optional = true }
2023-04-30 19:35:09 +00:00
[dev-dependencies]
futures-lite = "2.0.0"