202279c6d9
新增 Core、Engine、Runtime、SQLite、Provider、MCP、Skill、Codex、CLI 与 DAG crate 补齐 OpenAI endpoint 配置、Provider 实例/协议路由和统一工具权限边界 加入持久化、lease、checkpoint、reconciliation、审批恢复与消息历史回归 加入独立 workspace CI、依赖边界、能力集和 Fake Agent 测试脚本 同步建设计划、TODO、架构、测试与验收文档
21 lines
572 B
TOML
21 lines
572 B
TOML
[package]
|
|
name = "agent-runtime-sqlite"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
description = "SQLite durable runtime adapter and single-agent runtime service"
|
|
|
|
[dependencies]
|
|
agent-runtime-core.workspace = true
|
|
agent-runtime-contracts.workspace = true
|
|
agent-runtime.workspace = true
|
|
agent-storage-sqlite = { workspace = true, features = ["core-adapter"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[dev-dependencies]
|
|
agent-runtime-core.workspace = true
|