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