oxios-kernel 1.0.2

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

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

# 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.0.2", path = "../oxios-ouroboros" }
oxios-markdown = { version = "1.0.2", path = "../oxios-markdown" }
oxios-mcp = { version = "1.0.2", path = "../oxios-mcp" }
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 }
# 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 }

# WASM sandbox (optional)
wasmtime = { version = "22", features = ["cranelift"], optional = true }
wasmtime-wasi = { version = "22", optional = true }
sysinfo = "0.35"
dirs = { workspace = true }
libc = { workspace = true }
lru = "0.10"
inquire = { workspace = true }
console = { workspace = true }
indicatif = "0.17"

# Vector search (HNSW, legacy)
usearch = "2.25"

# 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 }

# Headless browser (built-in)
oxibrowser-core = "0.9.1"

# 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 }
oxios-ouroboros = { version = "1.0.2", path = "../oxios-ouroboros" }
oxios-gateway = { path = "../oxios-gateway" }
async-trait = { workspace = true }