26 lines
584 B
TOML
26 lines
584 B
TOML
[package]
|
|
name = "agent-tool-derive"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
syn = { version = "2", features = ["full", "extra-traits"] }
|
|
quote = "1"
|
|
proc-macro2 = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
convert_case = "0.11"
|
|
futures = "0.3" |