[package] name = "rusty_lr" version = "3.3.1" edition = "2021" license = "MIT OR Apache-2.0" description = "GLR, LR(1) and LALR(1) parser generator with custom reduce action" repository = "https://github.com/ehwan/RustyLR" readme = "../README.md" keywords = ["parser", "bison", "lr", "glr", "compiler"] categories = ["parsing", "compilers", "parser-implementations"] [dependencies] rusty_lr_core = { version = "3.4.2", path = "../rusty_lr_core" } rusty_lr_derive = { version = "2.4.1", path = "../rusty_lr_derive", optional = true } rusty_lr_buildscript = { version = "0.22.1", path = "../rusty_lr_buildscript", optional = true } [features] default = ["derive"] fxhash = [ "rusty_lr_core/fxhash", "rusty_lr_buildscript/fxhash", "rusty_lr_derive/fxhash", ] builder = ["rusty_lr_core/builder"] build = ["dep:rusty_lr_buildscript"] derive = ["dep:rusty_lr_derive"] tree = [ "rusty_lr_core/tree", "rusty_lr_derive/tree", "rusty_lr_buildscript/tree", ] error = ["rusty_lr_core/error"]