kode-bridge 0.3.2

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.10.1"

[dependencies.futures]
version = "0.3.31"

[dependencies.http]
version = "1.3.1"

[dependencies.httparse]
version = "1.10.1"

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

[dependencies.parking_lot]
version = "0.12.4"

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

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

[dependencies.rand]
version = "0.9.2"

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

[dependencies.serde_json]
version = "1.0.145"

[dependencies.thiserror]
version = "2.0.16"

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

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

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

[dependencies.toml]
version = "0.9.7"

[dependencies.tracing]
version = "0.1.41"

[dependencies.url]
version = "2.5.7"

[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.7.0"

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

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

[[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 = "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"

[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.76"
version = "0.3.2"

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

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