async-dup/Cargo.toml

26 lines
742 B
TOML
Raw Permalink Normal View History

2020-05-31 14:55:34 +00:00
[package]
name = "async-dup"
2022-01-08 12:28:14 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.2.4"
2020-05-31 14:55:34 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
2024-01-06 18:35:57 +00:00
edition = "2021"
rust-version = "1.60"
2020-05-31 14:55:34 +00:00
description = "Duplicate an async I/O handle"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-dup"
homepage = "https://github.com/smol-rs/async-dup"
2020-05-31 14:55:34 +00:00
documentation = "https://docs.rs/async-dup"
keywords = ["asynchronous", "duplicate", "clone", "split", "share"]
categories = ["asynchronous", "concurrency"]
2022-01-08 12:27:38 +00:00
exclude = ["/.*"]
2020-05-31 14:55:34 +00:00
[dependencies]
async-lock = "3.1.0"
2020-05-31 14:55:34 +00:00
futures-io = "0.3.5"
[dev-dependencies]
futures = { version = "0.3.5", default-features = false, features = ["std"] }
smol = "2"