[package]
edition = "2021"
name = "symbi-runtime"
version = "1.10.0"
authors = ["Jascha Wanger / ThirdKey.ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent Runtime System for the Symbi platform"
readme = "README.md"
keywords = [
"agent",
"runtime",
"ai",
"symbiont",
"automation",
]
categories = [
"development-tools",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/thirdkeyai/symbiont"
[features]
cedar = ["dep:cedar-policy"]
cli-executor = ["libc"]
cloud-llm = ["http-input"]
composio = []
cron = [
"dep:cron",
"dep:chrono-tz",
"dep:rusqlite",
]
default = [
"keychain",
"vector-lancedb",
]
embedding-models = [
"candle-core",
"candle-nn",
"candle-transformers",
"tokenizers",
"hf-hub",
]
enterprise = []
enterprise-compaction = []
full = [
"vector-lancedb",
"vector-qdrant",
"embedding-models",
"http-api",
"http-input",
"keychain",
"cron",
"metrics",
"composio",
"cedar",
"cloud-llm",
"toolclad-session",
]
http-api = [
"axum",
"tower",
"tower-http",
"tokio-tungstenite",
"governor",
"utoipa",
"utoipa-swagger-ui",
]
http-input = [
"axum",
"tower",
"tower-http",
"dep:jsonwebtoken",
]
keychain = ["keyring"]
metrics = [
"dep:opentelemetry",
"dep:opentelemetry_sdk",
"dep:opentelemetry-otlp",
]
minimal = []
native-sandbox = [
"rlimit",
"libc",
]
orga-adaptive = []
standalone-agent = [
"cloud-llm",
"composio",
]
toolclad-session = ["dep:pty-process"]
vector-lancedb = [
"dep:lancedb",
"dep:arrow-array",
"dep:arrow-schema",
]
vector-qdrant = ["dep:qdrant-client"]
vendored-openssl = ["openssl"]
[lib]
name = "symbi_runtime"
path = "src/lib.rs"
[[bin]]
name = "symbi-eval"
path = "src/bin/symbi_eval.rs"
required-features = ["cloud-llm"]
[[bin]]
name = "symbi-mcp"
path = "src/bin/symbiont_mcp.rs"
[[example]]
name = "basic_agent"
path = "examples/basic_agent.rs"
[[example]]
name = "communication_policy_gate"
path = "examples/communication_policy_gate.rs"
[[example]]
name = "composio_smoke_test"
path = "examples/composio_smoke_test.rs"
[[example]]
name = "context_example"
path = "examples/context_example.rs"
[[example]]
name = "context_persistence_test"
path = "examples/context_persistence_test.rs"
[[example]]
name = "full_system"
path = "examples/full_system.rs"
[[example]]
name = "rag_example"
path = "examples/rag_example.rs"
[[test]]
name = "http_input_integration_tests"
path = "tests/http_input_integration_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "knowledge_reasoning_tests"
path = "tests/knowledge_reasoning_tests.rs"
[[test]]
name = "mcp_client_tests"
path = "tests/mcp_client_tests.rs"
[[test]]
name = "performance_claims"
path = "tests/performance_claims.rs"
[[test]]
name = "policy_engine_tests"
path = "tests/policy_engine_tests.rs"
[[test]]
name = "rag_integration_tests"
path = "tests/rag_integration_tests.rs"
[[test]]
name = "reasoning_live_tests"
path = "tests/reasoning_live_tests.rs"
[[test]]
name = "reasoning_orga_tests"
path = "tests/reasoning_orga_tests.rs"
[[test]]
name = "resource_policy_integration_tests"
path = "tests/resource_policy_integration_tests.rs"
[[test]]
name = "schemapin_integration_tests"
path = "tests/schemapin_integration_tests.rs"
[[test]]
name = "security_tests"
path = "tests/security_tests.rs"
[[test]]
name = "tool_invocation_tests"
path = "tests/tool_invocation_tests.rs"
[[test]]
name = "vector_backend_integration_tests"
path = "tests/vector_backend_integration_tests.rs"
[[test]]
name = "vector_db_integration_tests"
path = "tests/vector_db_integration_tests.rs"
[[bench]]
name = "performance_claims"
path = "benches/performance_claims.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
[dependencies.agentpin]
version = "0.2.0"
features = ["fetch"]
[dependencies.anyhow]
version = "1.0"
[dependencies.arc-swap]
version = "1"
[dependencies.argon2]
version = "0.5"
[dependencies.arrow-array]
version = "57"
optional = true
[dependencies.arrow-schema]
version = "57"
optional = true
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = ["ws"]
optional = true
[dependencies.base64]
version = "0.21"
[dependencies.base64ct]
version = "1"
[dependencies.bytes]
version = "1.0"
features = ["serde"]
[dependencies.candle-core]
version = "0.9.1"
optional = true
[dependencies.candle-nn]
version = "0.9.1"
optional = true
[dependencies.candle-transformers]
version = "0.9.1"
optional = true
[dependencies.cedar-policy]
version = "4"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
optional = true
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.cron]
version = "0.15"
optional = true
[dependencies.crossbeam]
version = "0.8"
[dependencies.dashmap]
version = "5.0"
[dependencies.dirs]
version = "5.0"
[dependencies.dotenvy]
version = "0.15"
[dependencies.ed25519-dalek]
version = "2.1"
features = ["serde"]
[dependencies.fd-lock]
version = "4.0"
[dependencies.flate2]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.git2]
version = "0.20"
[dependencies.governor]
version = "0.10"
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.hf-hub]
version = "0.3"
optional = true
[dependencies.hmac]
version = "0.12"
[dependencies.humantime-serde]
version = "1.1"
[dependencies.jsonschema]
version = "0.28"
[dependencies.jsonwebtoken]
version = "10"
optional = true
[dependencies.keyring]
version = "2.0"
optional = true
[dependencies.lancedb]
version = "0.26"
optional = true
[dependencies.libc]
version = "0.2"
optional = true
[dependencies.octocrab]
version = "0.49"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
optional = true
[dependencies.opentelemetry]
version = "0.31"
optional = true
[dependencies.opentelemetry-otlp]
version = "0.31"
features = [
"metrics",
"grpc-tonic",
"http-proto",
"http-json",
]
optional = true
default-features = false
[dependencies.opentelemetry_sdk]
version = "0.31"
features = ["metrics"]
optional = true
[dependencies.parking_lot]
version = "0.12"
[dependencies.pty-process]
version = "0.4"
optional = true
[dependencies.qdrant-client]
version = ">=1.14.0, <1.16.0"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.0"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
]
[dependencies.rlimit]
version = "0.10"
optional = true
[dependencies.rusqlite]
version = "0.31"
features = [
"bundled",
"serde_json",
]
optional = true
[dependencies.schemapin]
version = "1.3.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2.5"
[dependencies.symbi-dsl]
version = "1.10.0"
[dependencies.sysinfo]
version = "0.30"
[dependencies.tempfile]
version = "3.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tiktoken-rs]
version = "0.6"
[dependencies.tokenizers]
version = "0.15"
optional = true
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.21"
optional = true
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
optional = true
[dependencies.tower-http]
version = "0.5"
features = [
"cors",
"trace",
]
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.url]
version = "2.4"
[dependencies.utoipa]
version = "4.2"
features = [
"axum_extras",
"chrono",
]
optional = true
[dependencies.utoipa-swagger-ui]
version = "6.0"
features = ["axum"]
optional = true
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dependencies.vaultrs]
version = "0.7"
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.filetime]
version = "0.2"
[dev-dependencies.serial_test]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio-test]
version = "0.4"
[target.'cfg(target_os = "linux")'.dependencies.secret-service]
version = "3.0"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.security-framework]
version = "2.9"
optional = true
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = ["wincred"]
optional = true