terraphim_goal_alignment 1.0.0

Knowledge graph-based goal alignment system for multi-level goal management and conflict resolution
Documentation
[package]
name = "terraphim_goal_alignment"
version = "1.0.0"
edition.workspace = true
authors = ["Terraphim Contributors"]
description = "Knowledge graph-based goal alignment system for multi-level goal management and conflict resolution"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://github.com/terraphim/terraphim-ai"
keywords = ["ai", "agents", "goals", "knowledge-graph", "alignment"]
license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
# Core Terraphim dependencies
terraphim_types = { version = "1.0.0" }
terraphim_automata = { version = "1.19.2" }
terraphim_rolegraph = { version = "1.0.0" }
terraphim_agent_registry = { path = "../terraphim_agent_registry", version = "1.19.2" }

# 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"] }
indexmap = { version = "2.0", features = ["serde"] }

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

env_logger = "0.11"
serial_test = "3.3"

[features]
default = []
benchmarks = ["dep:criterion"]

[dependencies.criterion]
version = "0.8"
optional = true

[[bench]]
name = "goal_alignment_benchmarks"
harness = false
required-features = ["benchmarks"]