[workspace]
members = [".", "simplify_baml_macros"]
[package]
name = "simplify_baml"
version = "0.2.0"
edition = "2021"
authors = ["catethos <cloverethos@gmail.com>"]
description = "Simplified BAML runtime for structured LLM outputs using native Rust types with macros"
readme = "README.md"
repository = "https://github.com/catethos/simplify_baml"
license = "MIT"
keywords = ["llm", "baml", "ai", "structured-output", "openai"]
categories = ["api-bindings", "web-programming", "template-engine"]
[dependencies]
anyhow = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1"
minijinja = "2.0"
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio = { version = "1.0", features = ["full"] }
simplify_baml_macros = { path = "simplify_baml_macros", version = "0.2.0" }
genai = "0.4.2"
futures = "0.3"
[dev-dependencies]
trybuild = "1.0"