-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 773 Bytes
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
[package]
name = "local_async_utils"
version = "0.2.14"
edition = "2024"
authors = ["Mikhail Vasilyev <mikail.vasilyev@gmail.com>"]
description = "Utilities for single-threaded async programming"
repository = "https://github.com/DanglingPointer/local_async_utils"
license = "Apache-2.0"
categories = ["asynchronous", "data-structures"]
exclude = ["/tests"]
[features]
tokio = ["dep:tokio"]
[dependencies]
futures = "0.3"
log = "0.4"
tokio = { version = "1.50", optional = true, features = ["time"] }
[dev-dependencies]
static_assertions = "1.1"
tokio-test = "0.4"
tokio = { version = "1.50", features = ["time", "io-util"] }
[profile.dev]
opt-level = 3
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustc-args = ["--cfg", "docsrs"]