-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
81 lines (70 loc) · 1.76 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Whisk
# Copyright © 2022-2024 Jeron Aldaron Lau.
#
# Licensed under any of:
# - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
# - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
# - MIT License (https://mit-license.org/)
# At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).
[package]
name = "whisk"
version = "0.13.0"
license = "Apache-2.0 OR BSL-1.0 OR MIT"
description = "Simple and fast lockless async channels"
repository = "https://github.com/ardaku/whisk"
documentation = "https://docs.rs/whisk"
homepage = "https://github.com/ardaku/whisk/blob/stable/CHANGELOG.md"
include = [
"/LICENSE_APACHE",
"/LICENSE_BOOST",
"/LICENSE_MIT",
"/README.md",
"/src/*",
"/examples/tokio.rs",
]
categories = [
"asynchronous",
"concurrency",
"embedded",
"hardware-support",
"no-std",
]
keywords = ["channel", "actor", "mpmc", "notifier", "event_iterator"]
readme = "README.md"
edition = "2021"
rust-version = "1.70"
[[example]]
name = "tokio"
required-features = ["futures_core_3"]
[dependencies.futures_core_3]
package = "futures-core"
version = "0.3"
optional = true
default-features = false
[dependencies.event_iterator]
version = "0.1"
optional = true
[dev-dependencies]
async_main = { version = "0.4", features = ["pasts"] }
dl_api = "0.4"
flume = "0.11"
futures = "0.3"
libm = "0.2"
ntest = "0.9"
tokio-stream = "0.1"
[dev-dependencies.pasts]
version = "0.14"
default-features = false
[dev-dependencies.tokio]
version = "1.28"
default-features = false
features = ["rt-multi-thread", "macros"]
[features]
default = []
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[package.metadata.docs.rs]
all-features = true