-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
59 lines (51 loc) · 1.4 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
[package]
name = "target-notifier"
version = "0.1.0"
edition = "2021"
rust-version = "1.64"
authors = ["Volkalex28 <[email protected]>"]
description = """
target-notifier is a wrapper over asynchronous channels for sending data
to the target (or multiple) listeners or in broadcast mode
"""
license = "MIT OR Apache-2.0"
homepage = "https://github.com/Volkalex28/target_notifier#readme"
repository = "https://github.com/Volkalex28/target_notifier"
readme = "README.md"
categiries = ["asynchronous", "data-structures", "embedded", "no-std"]
keywords = ["channels", "embassy", "async", "notification"]
include = [
"/src",
"/README.md",
"/LICENSE_MIT",
"/LICENSE_APACHE",
]
[features]
async-std = ["async-std/std", "parking_lot", "hybrid-rc", "futures-util"]
async-channel = ["dep:async-channel", "parking_lot", "hybrid-rc", "futures-util"]
embassy = ["embassy-sync/std"]
std = []
[dependencies]
target-notifier-proc = { path = "./proc" }
log = "0.4.17"
[dependencies.embassy-sync]
version = "0.1.0"
optional = true
[dependencies.async-std]
version = "1.12.0"
default-features = false
optional = true
[dependencies.async-channel]
version = "1.7.1"
default-features = false
optional = true
[dependencies.parking_lot]
version = "0.12.1"
optional = true
[dependencies.hybrid-rc]
version = "0.6.0"
default-features = false
optional = true
[dependencies.futures-util]
version = "0.3.25"
optional = true