[package]
edition = "2024"
name = "relix"
version = "0.1.0"
authors = ["Sean Merriam"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Pratt parser implementation for a custom language with support for expressions, statements, and type annotations"
homepage = "https://github.com/seanrobmerriam/relix"
documentation = "https://docs.rs/relix"
readme = "README.md"
keywords = [
"parser",
"lexer",
"pratt",
"ast",
"language",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT"
repository = "https://github.com/seanrobmerriam/relix"
[lib]
name = "relix"
path = "src/lib.rs"
[[bin]]
name = "relix"
path = "src/main.rs"
[dependencies.regex]
version = "1"