# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "chat_messages" version = "0.1.0" authors = ["Kingston Huynh <139024820+kinghuynh@users.noreply.github.com>"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "chat_messages is a lightweight Rust library for creating structured messages in chat systems, including HumanMessage, AiMessage, SystemMessage, and more. It supports easy extensibility through macros, Serde-based serialization, and customizable fields, making it ideal for chatbots, AI agents, and messaging platforms." readme = "README.md" keywords = [ "llm", "AI", "langchain", "chatbots", "agents", ] categories = [ "text-processing", "parsing", "development-tools::procedural-macro-helpers", "development-tools", ] license = "Apache-2.0" repository = "https://github.com/kinghuynh/chat_messages.git" [lib] name = "chat_messages" path = "src/lib.rs" [[test]] name = "define_message_tests" path = "tests/define_message_tests.rs" [[test]] name = "derive_message_tests" path = "tests/derive_message_tests.rs" [[test]] name = "message_serialization_tests" path = "tests/message_serialization_tests.rs" [[test]] name = "message_tests" path = "tests/message_tests.rs" [dependencies.derive_base_message] version = "0.1.0" [dependencies.paste] version = "1.0.15" [dependencies.serde] version = "1.0.210" features = ["derive"] [dependencies.serde_json] version = "1.0.128"