-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 871 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 = "onetime"
version = "0.1.2"
edition = "2021"
authors = ["Danil Karpenko <limpix31@gmail.com>"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/limpix31/onetime"
keywords = ["onetime", "oneshot", "chan", "futures"]
categories = ["asynchronous", "concurrency"]
readme = "readme.md"
description = "Onetime (aka. oneshot) async spsc channel"
[dependencies]
thiserror = { version = "1" }
event-listener-strategy = { version = "0.5", default-features = false }
pin-project-lite = { version = "0.2" }
[dev-dependencies]
futures-lite = { version = "2" }
smol = { version = "2" }
[features]
default = ["std"]
std = ["event-listener-strategy/std"]
[lints.rust]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
all = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"