-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
32 lines (28 loc) · 982 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "io-mux"
version = "2.2.0"
authors = ["Josh Triplett <[email protected]>"]
description = "Provide multiple file descriptors writing into one in-order pipe, tagged by the source of data (e.g. stdout/stderr)"
keywords = ["log", "pipe", "stdout", "stderr"]
categories = ["command-line-interface"]
repository = "https://github.com/joshtriplett/io-mux"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
async-io = { version = "2.3", optional = true }
fastrand = "2.0.1"
rustix = { version = "0.38", features = ["net"] }
tempfile = "3.9"
[dev-dependencies]
async-process = "2.0.1"
futures-lite = "2.2.0"
[features]
# Enable the AsyncMux type
async = ["async-io"]
# Support building on non-Linux targets. See the portability notes in the
# documentation before enabling this.
experimental-unix-support = []
# Test the portable code path on Linux, to confirm that it compiles and runs.
test-portable = []
[package.metadata.docs.rs]
features = ["async"]