-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1.21 KB
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
[package]
name = "streamtools"
version = "0.7.7"
edition = "2024"
authors = ["extremeandy"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/extremeandy/streamtools"
description = "Additional stream combinators"
readme = "README.md"
# Oldest 2024 edition compatible version
rust-version = "1.85.0"
# Max 5 from here: https://crates.io/category_slugs
categories = ["algorithms", "asynchronous"]
[dependencies]
futures = "0.3.28"
pin-project-lite = "0.2.9"
parking_lot = "0.12.1"
tokio = { version = "1.48.0", optional = true, features = ["time"] }
tokio-stream = { version = "0.1.14", optional = true, features = ["time"] }
[dependencies.either-or-both]
version = "0.3.0"
# Disabling the `either` feature which is not needed currently.
default-features = false
features = ["std"]
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.1.0"
tokio = { version = "1.48.0", features = ["rt-multi-thread", "sync", "macros", "time"] }
tokio-stream = { version = "0.1.14", features = ["sync", "time"] }
tokio-test = "0.4.2"
[build-dependencies]
rustc_version = "0.4.0"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
tokio-time = ["dep:tokio", "dep:tokio-stream"]
test-util = ["tokio-time"]