[package]
edition = "2024"
rust-version = "1.85"
name = "ipcez"
version = "0.1.0"
authors = []
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library for ipcez."
homepage = "https://github.com/YOUR_ORG/ipcez#readme"
documentation = "https://docs.rs/ipcez"
readme = "README.md"
keywords = [
"ipc",
"websocket",
"unix-socket",
"named-pipe",
"inter-process",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/YOUR_ORG/ipcez"
[lib]
name = "ipcez"
path = "src/lib.rs"
[dependencies.futures-util]
version = "0.3"
[dependencies.tokio]
version = "1"
features = [
"net",
"rt",
"io-util",
"time",
"sync",
]
[dependencies.tokio-tungstenite]
version = "0.28"
[target."cfg(unix)".dependencies.named-sem]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.52"
features = [
"Win32_System_Threading",
"Win32_Foundation",
"Win32_Security",
]