bus_queue 0.3.8

Lock-free Bounded non-Blocking Pub-Sub Queue
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "bus_queue"
version = "0.3.8"
authors = ["Filip Dulic <filip.dulic@gmail.com>", "Vladan Popovic <vladanovic@gmail.com>", "Bojan Petrovic <bojan_petrovic@fastmail.fm>"]
description = "Lock-free Bounded non-Blocking Pub-Sub Queue"
readme = "README.md"
keywords = ["pubsub", "lock-free", "queue", "async", "futures"]
license = "Apache-2.0/MIT"
repository = "https://github.com/filipdulic/bus-queue"

[[example]]
name = "bare-simple"
path = "examples/bare-simple.rs"

[[example]]
name = "sync-simple"
path = "examples/sync-simple.rs"

[[example]]
name = "async-simple"
path = "examples/async-simple.rs"
required-features = ["async-example"]
[dependencies.arc-swap]
version = "0.3.6"

[dependencies.futures]
version = "0.1"
optional = true

[dependencies.tokio]
version = "0.1"
optional = true

[features]
async = ["futures"]
async-example = ["tokio"]
default = ["async"]