16 lines
371 B
TOML
16 lines
371 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"
|
|
|
|
[features]
|
|
default = ["mock"]
|
|
mock = []
|
|
|
|
[dependencies]
|
|
focus-json.workspace = true
|
|
tokio = { workspace = true, features = ["rt", "sync", "macros"] }
|