[package] name = "tari_broadcast_channel" version = "0.3.0" authors = ["Filip Dulic ", "Vladan Popovic ", "Bojan Petrovic ", "The Tari Development Community"] description = "Bounded non-blocking single-producer-multi-consumer broadcast channel" license = "Apache-2.0/MIT" keywords = ["pubsub", "lock-free", "queue","async","futures"] repository = "https://github.com/tari-project/broadcast_channel" homepage = "https://tari.com" readme = "README.md" edition = "2018" [dependencies] arc-swap = "0.4.2" futures = { version = "^0.3.1" } crossbeam-channel = "0.5.4" log = "0.4.6" [dev-dependencies] criterion = "0.3.0" tokio = {version="1.19.2", features = ["rt", "rt-multi-thread"] } [[example]] name = "raw-simple" path = "examples/raw-simple.rs" [[example]] name = "async-simple" path = "examples/async-simple.rs" [[bench]] name = "benches_main" harness = false