26 lines
639 B
TOML
26 lines
639 B
TOML
|
|
[package]
|
||
|
|
name = "vapora-capabilities"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
description = "Pre-built capability packages for VAPORA agents — domain-optimized prompts, tools, and LLM configs"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["rlib"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
vapora-shared = { workspace = true }
|
||
|
|
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
toml = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
parking_lot = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tempfile = { workspace = true }
|