-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
37 lines (32 loc) · 977 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
33
34
35
36
37
[package]
name = "bus_queue"
version = "0.5.3"
authors = ["Filip Dulic <[email protected]>", "Vladan Popovic <[email protected]>", "Bojan Petrovic <[email protected]>"]
description = "Lock-free Bounded non-Blocking Pub-Sub Queue"
license = "Apache-2.0/MIT"
keywords = ["pubsub", "lock-free", "queue","async","futures"]
repository = "https://github.com/filipdulic/bus-queue"
readme = "README.md"
edition = "2018"
[dependencies]
arc-swap = {version = "0.4.6", optional = true}
futures-core = "0.3.5"
futures-sink = "0.3.5"
event-listener = "1.0.0"
# conc = {version="0.5.1", optional = true}
[dev-dependencies]
rand = "0.7.3"
futures-test = "0.3.5"
futures = {version = "0.3.5", features = ["thread-pool"]}
[features]
default = ["arcswap", "rwlock"]
arcswap = ["arc-swap"]
# conc-atomic = ["conc"]
rwlock = []
atomic-arc = []
[[example]]
name = "raw-simple"
path = "examples/raw-simple.rs"
[[example]]
name = "async-simple"
path = "examples/async-simple.rs"