[package]
edition = "2021"
name = "mesh-dataplane"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "gRPC DataPlane server and consumer client for the Mesh Protocol (Handshake/Transfer/Result)"
readme = "README.md"
keywords = [
"mesh-protocol",
"grpc",
"tonic",
"ai-agents",
"dataplane",
]
categories = [
"network-programming",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/mesh-protocol/mesh-protocol"
[lib]
name = "mesh_dataplane"
path = "src/lib.rs"
[[example]]
name = "consumer"
path = "examples/consumer.rs"
[[example]]
name = "e2e"
path = "examples/e2e.rs"
[[example]]
name = "provider"
path = "examples/provider.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-stream]
version = "0.3"
[dependencies.bytes]
version = "1.4"
[dependencies.dashmap]
version = "5.4"
[dependencies.futures]
version = "0.3"
[dependencies.mesh-proto]
version = "0.1.0"
[dependencies.mesh-session]
version = "0.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.subtle]
version = "2.4"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tonic]
version = "0.9"
features = ["transport"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]