terraphim_agent_messaging 1.19.2

Erlang-style asynchronous message passing system for AI agents
Documentation
[package]
name = "terraphim_agent_messaging"
version = "1.19.2"
edition.workspace = true
authors = ["Terraphim Contributors"]
description = "Erlang-style asynchronous message passing system for AI agents"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://github.com/terraphim/terraphim-ai"
keywords = ["ai", "agents", "messaging", "async", "erlang"]
license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_agent_supervisor = {  path = "../terraphim_agent_supervisor", version = "1.19.2" }
terraphim_types = { version = "1.0.0" }

# Core async runtime and utilities
tokio = { workspace = true }
async-trait = { workspace = true }

futures-util = "0.3"

# Error handling and serialization
thiserror = { workspace = true }

serde = { workspace = true, features = ["derive"] }

serde_json = { workspace = true }


# Unique identifiers and time handling
uuid = { workspace = true, features = ["v4", "serde"] }

chrono = { workspace = true, features = ["serde"] }


# Logging
log = { workspace = true }


# Collections and utilities
ahash = { version = "0.8.8", features = ["serde"] }

# Channels and synchronization
tokio-util = "0.7"

[dev-dependencies]
tokio-test = "0.4"
tempfile = { workspace = true }

env_logger = "0.11"
serial_test = "3.3"

[features]
default = []