[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1.9"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.interprocess]
features = ["tokio"]
optional = true
version = "2"
[dependencies.parking_lot]
version = "0.12"
[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.27"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
optional = true
version = "1.42"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.14"
[dev-dependencies.tokio]
features = ["full", "rt-multi-thread", "macros"]
version = "1.42"
[features]
abi3 = ["pyo3/abi3"]
abi3-py37 = ["pyo3/abi3-py37"]
abi3-py38 = ["pyo3/abi3-py38"]
async = ["tokio"]
backend-interprocess = ["interprocess"]
default = []
ext-module = ["pyo3/extension-module"]
python-bindings = ["pyo3"]
[lib]
crate-type = ["cdylib", "rlib"]
name = "ipckit"
path = "src/lib.rs"
[package]
authors = ["Hal <hal.long@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["os", "api-bindings", "concurrency"]
description = "A cross-platform IPC (Inter-Process Communication) library for Rust and Python"
edition = "2021"
keywords = ["ipc", "pipe", "shared-memory", "socket", "interprocess"]
license = "MIT OR Apache-2.0"
name = "ipckit"
readme = false
repository = "https://github.com/loonghao/ipckit"
version = "0.1.6"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_System_Pipes", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_Memory"]
version = "0.61"