kode-bridge 0.3.6

Modern HTTP Over IPC library for Rust with both client and server support (Unix sockets, Windows named pipes).
Documentation
[[bench]]
harness = false
name = "bench_version"
path = "benches/bench_version.rs"

[dependencies.bytes]
version = "1.11"

[dependencies.futures]
version = "0.3"

[dependencies.http]
version = "1.4"

[dependencies.httparse]
version = "1.10"

[dependencies.interprocess]
features = ["tokio"]
version = "2.2.3"

[dependencies.parking_lot]
version = "0.12"

[dependencies.path-tree]
optional = true
version = "0.8"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.rand]
version = "0.9"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["rt", "rt-multi-thread", "io-util", "sync", "time", "macros", "signal"]
version = "1.49.0"

[dependencies.tokio-stream]
features = ["io-util"]
version = "0.1"

[dependencies.tokio-util]
features = ["codec", "io"]
version = "0.7"

[dependencies.toml]
version = "0.9"

[dependencies.tracing]
version = "0.1"

[dependencies.url]
version = "2.5"

[dev-dependencies.async-trait]
version = "0.1.89"

[dev-dependencies.chrono]
default-features = false
features = ["std", "clock"]
version = "0.4.42"

[dev-dependencies.criterion]
features = ["async"]
version = "=0.8.1"

[dev-dependencies.dotenvy]
version = "0.15.7"

[dev-dependencies.tracing-subscriber]
version = "0.3.22"

[[example]]
name = "concurrent_proxy_test"
path = "examples/concurrent_proxy_test.rs"

[[example]]
name = "elegant_http"
path = "examples/elegant_http.rs"

[[example]]
name = "elegant_stream"
path = "examples/elegant_stream.rs"

[[example]]
name = "http_server"
path = "examples/http_server.rs"
required-features = ["server"]

[[example]]
name = "metrics_demo"
path = "examples/metrics_demo.rs"

[[example]]
name = "modern_example"
path = "examples/modern_example.rs"

[[example]]
name = "proxy"
path = "examples/proxy.rs"

[[example]]
name = "quick_put_test"
path = "examples/quick_put_test.rs"

[[example]]
name = "request"
path = "examples/request.rs"

[[example]]
name = "request_large"
path = "examples/request_large.rs"

[[example]]
name = "server"
path = "examples/server.rs"
required-features = ["server"]

[[example]]
name = "stream_server"
path = "examples/stream_server.rs"
required-features = ["server"]

[[example]]
name = "traffic"
path = "examples/traffic.rs"

[[example]]
name = "traffic_monitor"
path = "examples/traffic_monitor.rs"

[[example]]
name = "two_clients"
path = "examples/two_clients.rs"

[features]
client = []
default = ["client"]
full = ["client", "server"]
server = ["path-tree"]

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

[lints.clippy]
async_yields_async = "deny"
await_holding_lock = "deny"
branches_sharing_code = "deny"
clone_on_ref_ptr = "warn"
cloned_instead_of_copied = "deny"
cognitive_complexity = "deny"
collection_is_never_read = "deny"
copy_iterator = "deny"
dbg_macro = "warn"
equatable_if_let = "deny"
expect_used = "warn"
expl_impl_clone_on_copy = "deny"
future_not_send = "deny"
iter_on_empty_collections = "deny"
iter_on_single_items = "deny"
iter_with_drain = "deny"
large_const_arrays = "warn"
large_futures = "deny"
large_stack_arrays = "warn"
large_types_passed_by_value = "deny"
missing_const_for_fn = "deny"
mutex_atomic = "deny"
mutex_integer = "deny"
needless_collect = "deny"
needless_continue = "deny"
needless_pass_by_ref_mut = "deny"
needless_raw_string_hashes = "deny"
option_as_ref_cloned = "deny"
or_fun_call = "deny"
panic = "deny"
pathbuf_init_then_push = "deny"
rc_clone_in_vec_init = "warn"
rc_mutex = "deny"
redundant_clone = "deny"
redundant_else = "deny"
significant_drop_in_scrutinee = "deny"
significant_drop_tightening = "deny"
string_lit_as_bytes = "deny"
suspicious_operation_groupings = "deny"
todo = "warn"
trait_duplication_in_bounds = "deny"
tuple_array_conversions = "deny"
unimplemented = "deny"
unnecessary_self_imports = "deny"
unnecessary_wraps = "deny"
unused_async = "deny"
unused_trait_names = "deny"
unwrap_used = "warn"
use_self = "deny"
useless_let_if_seq = "deny"
wildcard_imports = "deny"

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.suspicious]
level = "deny"
priority = -1

[package]
authors = ["Tunglies"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "web-programming", "api-bindings", "asynchronous"]
description = "Modern HTTP Over IPC library for Rust with both client and server support (Unix sockets, Windows named pipes)."
edition = "2021"
keywords = ["http", "ipc", "bridge", "async", "performance"]
license = "Apache-2.0"
name = "kode-bridge"
readme = "README.md"
repository = "https://github.com/KodeBarinn/kode-bridge"
rust-version = "1.83"
version = "0.3.6"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.widestring]
version = "1.2"