-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1.06 KB
/
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
33
[package]
name = "stream_multiplexer"
version = "0.16.1"
authors = ["Benjamin Halsted <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
categories = ["asynchronous", "network-programming"]
description = "Combines many streams into a few."
documentation = "https://docs.rs/stream_multiplexer"
keywords = ["async", "asynchronous", "multiplex", "stream", "futures"]
readme = "README.md"
repository = "https://github.com/halzy/stream_multiplexer"
[dependencies]
async-channel = "1.4.0"
async-mutex = "1.1.5"
dashmap = "4.0.0-rc6"
futures-util = { version = "0.3.5", default-features = false, features=["std","async-await-macro","sink","alloc"] }
generational-arena = "0.2.8"
log = "0.4.11"
parking_lot = "0.11.0"
pin-project-lite = "0.1.7"
thiserror = "1.0.20"
sharded-slab = "0.0.9"
[dev-dependencies]
alto_logger = "0.3.6"
async-io = "0.1.9"
futures-util = { version = "0.3.5", default-features = false, features=["io","std"] }
pin-project-lite = "0.1.7"
smol = "0.3.3"
tokio-util = { version = "0.3.1", default-features = false, features=["codec","compat"] }