26 lines
666 B
TOML
26 lines
666 B
TOML
[package]
|
|
name = "agen-macros"
|
|
description = "Procedural macros for declaring agen tools"
|
|
version = "0.2.0"
|
|
edition.workspace = true
|
|
rust-version = "1.85"
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository = "https://gitea.hareworks.net/Hare/yoi"
|
|
homepage = "https://gitea.hareworks.net/Hare/yoi"
|
|
documentation = "https://docs.rs/agen-macros"
|
|
keywords = ["llm", "agent", "tools", "macros"]
|
|
categories = ["development-tools::procedural-macro-helpers"]
|
|
include = ["src/**", "README.md", "LICENSE"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|