ipc-rpc 3.0.0

A wrapper over servo/ipc-channel which provides many high level features
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.93.0"
name = "ipc-rpc"
version = "3.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A wrapper over servo/ipc-channel which provides many high level features"
documentation = "https://docs.rs/ipc-rpc/"
readme = "README.md"
keywords = [
    "ipc",
    "rpc",
    "channel",
    "ipc-channel",
    "inter-process",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/Xaeroxe/ipc-rpc"

[features]
default = ["message-schema-validation"]
message-schema-validation = [
    "dep:schemars",
    "dep:serde_json",
]

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

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

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

[dependencies.futures]
version = "0.3.32"

[dependencies.ipc-channel]
version = "0.21.0"

[dependencies.log]
version = "0.4.29"

[dependencies.schemars]
version = "1.2.1"
optional = true

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

[dependencies.serde_json]
version = "1.0.149"
optional = true

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.52.1"
features = [
    "sync",
    "rt-multi-thread",
    "time",
    "macros",
    "process",
]

[dependencies.uuid]
version = "1.23.1"
features = [
    "serde",
    "v4",
]

[dev-dependencies.env_logger]
version = "0.11.10"

[dev-dependencies.test-log]
version = "0.2.20"