mirror of
https://github.com/aljazceru/goose.git
synced 2026-02-14 11:04:29 +01:00
This builds a prototype FFI for goose rust library which only supports initializing goose agent and sending message, there is no support for tool calling yet in this library.
26 lines
508 B
TOML
26 lines
508 B
TOML
[package]
|
|
name = "goose-ffi"
|
|
build = "build.rs"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[lib]
|
|
name = "goose_ffi"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
goose = { path = "../goose" }
|
|
futures = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
libc = "0.2"
|
|
once_cell = "1.18"
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.24.0"
|