[package]
edition = "2021"
name = "albert-runtime"
version = "1.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Conversation runtime for Albert CLI — session management, MCP, OAuth, bash execution, tool use and compaction"
homepage = "https://ternlang.com"
readme = "README.md"
keywords = [
"ai",
"agent",
"cli",
"mcp",
"llm",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "LGPL-2.1-or-later"
repository = "https://github.com/eriirfos-eng/ternary-intelligence-stack"
[lib]
name = "albert_runtime"
path = "src/lib.rs"
[dependencies.glob]
version = "0.3"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"time",
]
[dependencies.walkdir]
version = "2"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"