# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "rusty_lr" version = "3.3.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "GLR, LR(1) and LALR(1) parser generator with custom reduce action" readme = "README.md" keywords = [ "parser", "bison", "lr", "glr", "compiler", ] categories = [ "parsing", "compilers", "parser-implementations", ] license = "MIT OR Apache-2.0" repository = "https://github.com/ehwan/RustyLR" resolver = "1" [lib] name = "rusty_lr" path = "src/lib.rs" [dependencies.rusty_lr_buildscript] version = "0.22.1" optional = true [dependencies.rusty_lr_core] version = "3.4.2" [dependencies.rusty_lr_derive] version = "2.4.1" optional = true [features] build = ["dep:rusty_lr_buildscript"] builder = ["rusty_lr_core/builder"] default = ["derive"] derive = ["dep:rusty_lr_derive"] error = ["rusty_lr_core/error"] fxhash = [ "rusty_lr_core/fxhash", "rusty_lr_buildscript/fxhash", "rusty_lr_derive/fxhash", ] tree = [ "rusty_lr_core/tree", "rusty_lr_derive/tree", "rusty_lr_buildscript/tree", ]