[package]
edition = "2021"
name = "promptml"
version = "0.1.0"
build = false
exclude = [
"tests/compile_fail/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe LLM prompt templates for Rust — catch missing variables at compile time"
homepage = "https://github.com/ptcodes/promptml"
documentation = "https://docs.rs/promptml"
readme = "README.md"
keywords = [
"llm",
"prompt",
"template",
"ai",
"openai",
]
categories = [
"template-engine",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ptcodes/promptml"
[lib]
name = "promptml"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.promptml-macros]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.trybuild]
version = "1"
features = ["diff"]