[package]
edition = "2021"
rust-version = "1.85"
name = "monocoque-rs-core"
version = "0.1.1"
authors = ["Matheus Santos <vorj.dux@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protocol-agnostic messaging kernel with io_uring-based I/O"
homepage = "https://github.com/vorjdux/monocoque"
documentation = "https://docs.rs/monocoque-rs-core"
readme = "README.md"
keywords = [
"messaging",
"io_uring",
"async",
"zeromq",
"kernel",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/vorjdux/monocoque"
[lib]
name = "monocoque_core"
path = "src/lib.rs"
[[test]]
name = "message_builder_tests"
path = "tests/message_builder_tests.rs"
[[test]]
name = "socket_options_tests"
path = "tests/socket_options_tests.rs"
[dependencies.async-lock]
version = "3.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1.11.1"
[dependencies.compio]
version = "0.10"
features = [
"runtime",
"macros",
"time",
"bytes",
]
[dependencies.dashmap]
version = "6.0"
[dependencies.flume]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.hashbrown]
version = "0.14"
[dependencies.once_cell]
version = "1.19"
[dependencies.parking_lot]
version = "0.12"
[dependencies.smallvec]
version = "1.13"
[dependencies.socket2]
version = "0.5"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
future_not_send = "allow"
items_after_statements = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_pass_by_ref_mut = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
struct_excessive_bools = "allow"