mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-07-30 15:01:15 +00:00
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "openfang-kernel"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Core kernel for the OpenFang Agent OS"
|
|
|
|
[dependencies]
|
|
openfang-types = { path = "../openfang-types" }
|
|
openfang-memory = { path = "../openfang-memory" }
|
|
openfang-runtime = { path = "../openfang-runtime" }
|
|
openfang-skills = { path = "../openfang-skills" }
|
|
openfang-hands = { path = "../openfang-hands" }
|
|
openfang-extensions = { path = "../openfang-extensions" }
|
|
openfang-wire = { path = "../openfang-wire" }
|
|
openfang-channels = { path = "../openfang-channels" }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
crossbeam = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
dirs = { workspace = true }
|
|
futures = { workspace = true }
|
|
subtle = { workspace = true }
|
|
rand = { workspace = true }
|
|
hex = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true }
|