[package] name = "copilot-rs-macro" version = "0.1.2" edition = "2021" description = "A Rust SDK for interacting with chat models, providing easy-to-use functions and tools." categories = ["development-tools"] keywords = ["rust", "chat-model", "sdk", "function-tools", "macro"] repository = "https://github.com/ZhouXiaolin/copilot-rs.git" authors = ["Solaren "] license = "MIT" readme = "README.md" [lib] proc-macro = true [dependencies] quote = { version = "1", default-features = false } syn = { version = "2", default-features = false, features = [ "full", "parsing", "printing", ] } serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" uuid = { version = "1.11.0", features = ["v4"] } darling = "0.20.10" anyhow = "1.0.93"