[package]
edition = "2021"
name = "schoolmarm"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GBNF grammar-constrained decoding for LLM inference, ported from llama.cpp"
homepage = "https://github.com/Michael-A-Kuykendall/schoolmarm"
readme = "README.md"
keywords = [
"llm",
"grammar",
"gbnf",
"inference",
"sampling",
]
categories = [
"text-processing",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Michael-A-Kuykendall/schoolmarm"
[lib]
name = "schoolmarm"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]