[package]
edition = "2024"
name = "langpipe"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible Rust library for building custom compilers and interpreters with a modular pipeline for lexing, parsing, transforming, optimizing, and generating code."
homepage = "https://github.com/Bleb1k/langpipe2"
readme = "README.md"
keywords = [
"bytecode-compiler",
"compilers",
"lexing",
"parsing",
"codegen",
]
categories = [
"parsing",
"compilers",
]
license = "MIT"
repository = "https://github.com/Bleb1k/langpipe2"
[lib]
name = "langpipe"
path = "src/lib.rs"
[[test]]
name = "stack_lang_to_c"
path = "tests/stack_lang_to_c.rs"
[dependencies.downcast-rs]
version = "2.0.1"