-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (59 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
members = [
"internal/ruchei-sample",
"ruchei-callback",
"ruchei-extra",
"ruchei-route",
]
[workspace.package]
edition = "2021"
publish = true
license = "MIT OR Apache-2.0"
repository = "https://github.com/parrrate/ruchei"
authors = [
"Alisa Feistel <[email protected]>",
"Timofey Prikhodko <[email protected]>",
]
rust-version = "1.75"
[package]
name = "ruchei"
version = "0.0.95"
description = "Utilities for working with many streams"
documentation = "https://docs.rs/ruchei"
keywords = ["streams", "async", "stream"]
categories = ["asynchronous"]
readme = "README.md"
edition.workspace = true
publish.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
rust-version.workspace = true
[workspace.dependencies]
ruchei-callback = { path = "ruchei-callback", version = "0.1.0" }
ruchei-extra = { path = "ruchei-extra", version = "0.1.1" }
ruchei-route = { path = "ruchei-route", version = "0.1.7", default-features = false }
ruchei-sample.path = "internal/ruchei-sample"
futures-channel = "0.3.31"
futures-core = "0.3.31"
futures-sink = "0.3.31"
futures-util = { version = "0.3.31", features = ["sink"] }
linked-hash-map = "0.5.6"
pin-project = "1"
slab = "0.4.9"
[dependencies]
ruchei-callback.workspace = true
ruchei-extra.workspace = true
ruchei-route = { workspace = true, features = ["unroute"] }
futures-channel.workspace = true
futures-util.workspace = true
linked-hash-map.workspace = true
pin-project.workspace = true
slab.workspace = true
[dev-dependencies]
async-io = "2.3.2"
async-net = "2.0.0"
async-std = { version = "1.12.0", features = ["attributes"] }
async-tungstenite = { version = "0.28" }
rand = "0.8.5"
thiserror = "1"