25 lines
577 B
TOML
25 lines
577 B
TOML
[package]
|
|
name = "goose-llm"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[dependencies]
|
|
goose = { path = "../goose" }
|
|
mcp-core = { path = "../mcp-core" }
|
|
tokio = { version = "1.43", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
minijinja = "2.8.0"
|
|
include_dir = "0.7.4"
|
|
once_cell = "1.20.2"
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
|
|
[[example]]
|
|
name = "simple"
|
|
path = "examples/simple.rs"
|