[package]
edition = "2021"
name = "phago-runtime"
version = "1.0.0"
authors = ["Clemens Hoenig"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Colony management, scheduling, and runtime for Phago biological computing"
documentation = "https://docs.rs/phago-runtime"
readme = "README.md"
keywords = [
"knowledge-graph",
"hebbian-learning",
"rag",
"agents",
"biological-computing",
]
categories = [
"science",
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/Clemens865/Phago_Project"
[features]
async = [
"tokio",
"async-trait",
"futures",
]
default = []
sqlite = ["rusqlite"]
streaming = [
"async",
"notify",
"notify-debouncer-mini",
]
[lib]
name = "phago_runtime"
path = "src/lib.rs"
[[test]]
name = "benchmarks"
path = "tests/benchmarks.rs"
[[test]]
name = "louvain_benchmark"
path = "tests/louvain_benchmark.rs"
[[test]]
name = "phase4_integration"
path = "tests/phase4_integration.rs"
[[test]]
name = "synaptic_pruning"
path = "tests/synaptic_pruning.rs"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.notify]
version = "6"
optional = true
[dependencies.notify-debouncer-mini]
version = "0.4"
optional = true
[dependencies.petgraph]
version = "0.7"
[dependencies.phago-agents]
version = "1.0.0"
[dependencies.phago-core]
version = "1.0.0"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
]
optional = true
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3"