oxios-kernel 1.2.0

Oxios kernel: supervisor, event bus, state store
Documentation
[package]
name = "oxios-kernel"
version = "1.2.0"
edition = "2021"
description = "Oxios kernel: supervisor, event bus, state store"
license = "MIT"
repository = "https://github.com/a7garden/oxios"

[features]
default = ["sqlite-memory"]
otel = ["tracing-opentelemetry", "opentelemetry", "opentelemetry_sdk", "opentelemetry-otlp", "opentelemetry-stdout"]
wasm-sandbox = ["dep:wasmtime", "dep:wasmtime-wasi"]
native-browser = ["oxi-sdk/native-browser"]
sqlite-memory = ["dep:rusqlite", "dep:sqlite-vec", "oxios-memory/sqlite-memory"]

# MLX embedding provider (Apple Silicon only)
# Provides EmbeddingGemma-300m dense vectors for semantic search.
# When disabled, falls back to TF-IDF sparse embeddings.
embedding-gguf = ["dep:llama-gguf", "dep:hf-hub"]

[dependencies]
oxios-ouroboros = { version = "1.2.0", path = "../oxios-ouroboros" }
oxios-markdown = { version = "1.2.0", path = "../oxios-markdown" }
oxios-calendar = { version = "1.2.0", path = "../oxios-calendar" }
oxios-mcp = { version = "1.2.0", path = "../oxios-mcp" }
oxios-memory = { version = "1.2.0", path = "../oxios-memory" }
oxi-sdk = { workspace = true }
# oxi-ai no longer needed directly — all types re-exported via oxi-sdk
tokio = { workspace = true }
futures = { workspace = true }
async-trait = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = "0.9"
uuid = { workspace = true }
tracing = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
chrono = { workspace = true }
cron = "0.16"

regex = { workspace = true }
gix = { version = "0.83", features = ["tree-editor", "blob-diff"] }
similar = "2"
toml = { workspace = true }
glob = "0.3"
tempfile = { workspace = true }
lettre = { workspace = true }
# HTTP client for ClawHub API
reqwest = { workspace = true }
# ZIP extraction for ClawHub skill archives
zip = { workspace = true }
# URL parsing
url = "2.5"
sha2 = { workspace = true }
hex = { workspace = true }
getrandom = { workspace = true }
once_cell = { workspace = true }
blake3 = { workspace = true }
tracing-subscriber = { workspace = true }
parking_lot = { workspace = true }
wasmtime = { version = "22", features = ["cranelift"], optional = true }
wasmtime-wasi = { version = "22", optional = true }
sysinfo = "0.35"
dirs = { workspace = true }
libc = { workspace = true }
inquire = { workspace = true }
console = { workspace = true }
indicatif = "0.17"

# SQLite-based memory storage (RFC-012)
rusqlite = { version = "0.34", features = ["bundled"], optional = true }
sqlite-vec = { version = "0.1", optional = true }

# MLX embedding (Apple Silicon, optional)
[target.'cfg(target_arch = "aarch64")'.dependencies]
llama-gguf = { version = "0.14", optional = true, features = ["cpu", "huggingface"] }
hf-hub = { version = "0.4", optional = true }


# OpenTelemetry (optional)
tracing-opentelemetry = { version = "0.28", optional = true }
opentelemetry = { version = "0.27", optional = true }
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"], optional = true }
opentelemetry-otlp = { version = "0.27", optional = true }
opentelemetry-stdout = { version = "0.27", optional = true }

[dev-dependencies]
tempfile = { workspace = true }
lettre = { workspace = true }
oxios-ouroboros = { version = "1.2.0", path = "../oxios-ouroboros" }
oxios-gateway = { path = "../oxios-gateway" }
async-trait = { workspace = true }
criterion = { version = "0.5", features = ["async"] }