omq 0.2.2

Pure Rust OMQ/ZeroMQ. Facade over omq-compio (default) or omq-tokio. Wire-compatible with libzmq.
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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93"
name = "omq"
version = "0.2.2"
authors = ["Patrik Wenger <paddor@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust OMQ/ZeroMQ. Facade over omq-compio (default) or omq-tokio. Wire-compatible with libzmq."
readme = false
license = "ISC"
repository = "https://github.com/paddor/omq.rs"
resolver = "2"

[features]
blake3zmq = [
    "omq-compio?/blake3zmq",
    "omq-tokio?/blake3zmq",
]
compio-backend = ["dep:omq-compio"]
curve = [
    "omq-compio?/curve",
    "omq-tokio?/curve",
]
default = ["compio-backend"]
lz4 = [
    "omq-compio?/lz4",
    "omq-tokio?/lz4",
]
priority = [
    "omq-compio?/priority",
    "omq-tokio?/priority",
]
tokio-backend = ["dep:omq-tokio"]
zstd = [
    "omq-compio?/zstd",
    "omq-tokio?/zstd",
]

[lib]
name = "omq"
path = "src/lib.rs"

[[test]]
name = "smoke"
path = "tests/smoke.rs"

[dependencies.omq-compio]
version = "0.2.6"
optional = true
default-features = false

[dependencies.omq-tokio]
version = "0.2.3"
optional = true
default-features = false

[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "deny"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1