Jesús Pérez 1329eb509f
Some checks failed
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
feat(core): add SurrealDB v3 engine abstraction, NATS event publishing, and storage factory
Key changes: new events.rs (NATS EventingStorage decorator), storage/factory.rs (backend selection), orchestration.rs, SurrealDB v3
  engine upgrade, expanded Nickel schemas, and two new ADRs (006, 007).
2026-02-22 21:51:53 +00:00

57 lines
1.9 KiB
TOML

[package]
name = "kogral-core"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "KOGRAL core library - Config-driven knowledge graph engine with multi-backend storage"
[dependencies]
# Workspace dependencies
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
toml = { workspace = true }
tokio = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
pulldown-cmark = { workspace = true }
tera = { workspace = true }
rig-core = { workspace = true }
surrealdb = { workspace = true, optional = true, features = ["kv-surrealkv", "kv-rocksdb", "protocol-ws", "rustls"] }
platform-nats = { workspace = true, optional = true }
stratum-orchestrator = { workspace = true, optional = true }
stratum-state = { workspace = true, optional = true }
bytes = { workspace = true, optional = true }
dashmap = { workspace = true }
notify = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }
# Additional dependencies
async-trait = { workspace = true }
regex = { workspace = true }
once_cell = { workspace = true }
walkdir = { workspace = true }
futures = { workspace = true }
# Stratum embeddings
stratum-embeddings = { path = "/Users/Akasha/Development/stratumiops/crates/stratum-embeddings", features = ["kogral"] }
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros"] }
mockito = { workspace = true }
tempfile = { workspace = true }
[features]
default = ["filesystem"]
filesystem = []
surrealdb-backend = ["dep:surrealdb"]
nats-events = ["dep:platform-nats", "dep:bytes"]
orchestration = ["nats-events", "dep:stratum-orchestrator", "dep:stratum-state"]
full = ["surrealdb-backend", "nats-events", "orchestration"]