kernex-runtime 0.8.3

The Rust runtime for AI agents. A composable engine with sandbox, providers, learning, and pipelines.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "kernex-runtime"
version = "0.8.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Rust runtime for AI agents. A composable engine with sandbox, providers, learning, and pipelines."
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/kernex-dev/kernex"

[package.metadata.cargo-machete]
ignored = ["tracing-opentelemetry"]

[features]
default = ["sqlite-store"]
opentelemetry = [
    "dep:opentelemetry",
    "dep:tracing-opentelemetry",
]
sqlite-store = ["dep:kernex-memory"]

[lib]
name = "kernex_runtime"
path = "src/lib.rs"

[[example]]
name = "full_stack"
path = "examples/full_stack.rs"

[[example]]
name = "hello_world"
path = "examples/hello_world.rs"

[[example]]
name = "memory_agent"
path = "examples/memory_agent.rs"

[[example]]
name = "pipeline_loader"
path = "examples/pipeline_loader.rs"

[[example]]
name = "simple_chat"
path = "examples/simple_chat.rs"

[[example]]
name = "skill_loader"
path = "examples/skill_loader.rs"

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.kernex-adapter-core]
version = "0.8.3"

[dependencies.kernex-core]
version = "0.8.3"

[dependencies.kernex-memory]
version = "0.8.3"
optional = true

[dependencies.kernex-pipelines]
version = "0.8.3"

[dependencies.kernex-providers]
version = "0.8.3"

[dependencies.kernex-sandbox]
version = "0.8.3"

[dependencies.kernex-skills]
version = "0.8.3"

[dependencies.opentelemetry]
version = "0.27"
optional = true

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "fs",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-opentelemetry]
version = "0.28"
optional = true

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"

[lints.rust]
unsafe_code = "deny"

[lints.rustdoc]
broken_intra_doc_links = "deny"