liner_broker 1.3.3

Redis based message serverless broker.
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 = "2021"
name = "liner_broker"
version = "1.3.3"
authors = ["Alexander Medvedev al_medved@mail.ru"]
build = false
exclude = [
    ".vscode/*",
    "cpp/*",
    "python/*",
    "target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Redis based message serverless broker."
readme = "README.md"
keywords = [
    "broker",
    "serverless",
    "redis",
    "network",
]
categories = [
    "concurrency",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/Tyill/liner"

[features]
liner_debug = []
postgres = ["dep:postgres"]

[lib]
name = "liner_broker"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "bench_pair_sendto_postgres"
path = "benchmark/bench_pair_sendto_postgres.rs"
required-features = ["postgres"]

[[bin]]
name = "bench_pair_sendto_redis"
path = "benchmark/bench_pair_sendto_redis.rs"

[[bin]]
name = "bench_pair_sendto_sqlite"
path = "benchmark/bench_pair_sendto_sqlite.rs"

[[bin]]
name = "many_to_many"
path = "rust/many_to_many.rs"

[[bin]]
name = "one_to_many"
path = "rust/one_to_many.rs"

[[bin]]
name = "one_to_one"
path = "rust/one_to_one.rs"

[[bin]]
name = "one_to_one_for_many"
path = "rust/one_to_one_for_many.rs"

[[bin]]
name = "producer_consumer"
path = "rust/producer_consumer.rs"

[dependencies.libc]
version = "0.2"

[dependencies.mio]
version = "1"
features = [
    "os-poll",
    "net",
]

[dependencies.postgres]
version = "0.19"
optional = true

[dependencies.rayon]
version = "1.10"

[dependencies.redis]
version = "0.26.1"

[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.zstd]
version = "0.13"

[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"