13 lines
429 B
TOML
13 lines
429 B
TOML
[package]
|
|
name = "focus-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
description = "Core agent layer: domain types, agent loop, tool and provider traits"
|
|
|
|
[dependencies]
|
|
# 核心层是纯同步逻辑(同步拉取式流模型),不依赖任何运行时。
|
|
# The core layer is purely synchronous (pull-based streaming); no runtime.
|
|
focus-json.workspace = true
|