[package]
edition = "2024"
name = "aufbau"
version = "0.1.2"
authors = ["pkd <pkd@unsuspicious.org>"]
build = false
exclude = [
"target/",
".venv/",
"tmp/",
"perf.data*",
"test.perf",
"flamegraph.svg",
".git/",
"forbid_copying/",
"rules/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generalized prefix parsing for a class of context-dependent languages"
homepage = "https://unsuspicious.org/blog/proposition-7"
readme = "README.md"
keywords = [
"llm",
"constrained-decoding",
"type-systems",
"grammar",
"parsing",
]
categories = [
"parsing",
"text-processing",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Unsuspicious-Industries/aufbau"
[features]
default = []
python-ffi = [
"dep:pyo3",
"pyo3/extension-module",
]
[lib]
name = "aufbau"
crate-type = [
"rlib",
"staticlib",
"cdylib",
]
path = "src/mod.rs"
[[bin]]
name = "aufbau"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.atty]
version = "0.2"
[dependencies.bimap]
version = "0.6.3"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.indicatif]
version = "0.17"
[dependencies.moka]
version = "0.12"
features = ["sync"]
[dependencies.once_cell]
version = "1.17.1"
[dependencies.pyo3]
version = "0.23"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.10"
[dependencies.regex-syntax]
version = "0.8.6"
[dependencies.rouille]
version = "3.6.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.proptest]
version = "1"