[[bin]]
name = "bench"
path = "src/bin/bench.rs"
required-features = ["bench"]
[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5"
[dependencies.crossbeam-channel]
version = "0.5.13"
[dependencies.tokio]
features = ["sync", "rt", "rt-multi-thread", "time"]
optional = true
version = "1.40"
[dependencies.zmq]
version = "0.10.0"
[dev-dependencies.tokio]
features = ["sync", "rt", "rt-multi-thread", "time", "macros"]
version = "1.40"
[features]
async = ["tokio"]
bench = ["clap"]
default = []
[lib]
name = "threadsafe_zmq"
path = "src/lib.rs"
[package]
authors = ["Elvis Sabanovic <elvissabanovic3@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "asynchronous", "network-programming"]
description = "Thread-safe ZeroMQ wrapper with sync and async support"
edition = "2021"
keywords = ["threadsafe", "zeromq", "sockets", "async", "channels"]
license = "Apache-2.0"
name = "threadsafe_zmq"
readme = "README.md"
repository = "https://github.com/Elvis339/threadsafe_zmq"
rust-version = "1.70"
version = "2.0.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]